P
pduncan
I'm creating a calendar control in Page_Init, setting it's date, and
adding a handler to it
Dim bdp9 As BasicFrame.WebControls.BasicDatePicker = New
BasicFrame.WebControls.BasicDatePicker
bdp9.DisplayType = BasicFrame.WebControls.DisplayType.Button
bdp9.SelectedDate = DateTime.Today
bdp9.AutoPostBack = True
AddHandler bdp9.SelectionChanged, AddressOf test
What I would like to have happen is for the event code "test" to get
processed before the page_init code fires again on a postback
Any ideas?
Thanks,
Paul
adding a handler to it
Dim bdp9 As BasicFrame.WebControls.BasicDatePicker = New
BasicFrame.WebControls.BasicDatePicker
bdp9.DisplayType = BasicFrame.WebControls.DisplayType.Button
bdp9.SelectedDate = DateTime.Today
bdp9.AutoPostBack = True
AddHandler bdp9.SelectionChanged, AddressOf test
What I would like to have happen is for the event code "test" to get
processed before the page_init code fires again on a postback
Any ideas?
Thanks,
Paul