postback problem

  • Thread starter Thread starter Alexander Widera
  • Start date Start date
It is probably the onclick event. In Visual Studio click on your
control and then select the little 'Lightening Flash' Button. You can
see which event is being fired here. Alternatively the event will also
be in the HTML for that button.
 
hi,

If you have place 2 server control on the form, first of all event order are
fire in the order of the control position starting from the top of your form
Ex: if the first control is a TextBox then the second in a button , then
textbox_change event will be fired first and then after wards button_click.

regards
serge
MCAD.NET
 
Back
Top