S
sacred
I am having great difficulty with the way .net is firing
events.
Currently is is going like this.
AutoPostBack = False
Events = Change for a dropdownlist
Person does the following:
Change the dropdownlist selection
Clicks on form submit buttons.
Page Process does this:
Excutes Page_Load routine
Excutes the Change event for dropdownlist
I want it to go like this.
AutoPostBack = False
Events = Change for a dropdownlist
Person does the following:
Change the dropdownlist selection
Clicks on form submit buttons.
Page Process does this:
Excutes the Change event for dropdownlist
Excutes Page_Load routine
In Other words I would like the change event for the
dropdownlist to fire first before the page_load event
without having to have autopostback set to true.
The list box is a sorting feature for displaying of
information and autopostback set to true would just upset
them.
events.
Currently is is going like this.
AutoPostBack = False
Events = Change for a dropdownlist
Person does the following:
Change the dropdownlist selection
Clicks on form submit buttons.
Page Process does this:
Excutes Page_Load routine
Excutes the Change event for dropdownlist
I want it to go like this.
AutoPostBack = False
Events = Change for a dropdownlist
Person does the following:
Change the dropdownlist selection
Clicks on form submit buttons.
Page Process does this:
Excutes the Change event for dropdownlist
Excutes Page_Load routine
In Other words I would like the change event for the
dropdownlist to fire first before the page_load event
without having to have autopostback set to true.
The list box is a sorting feature for displaying of
information and autopostback set to true would just upset
them.