hi i have one doubt of button click in asp.net, i have placed the button control with the OnClick event like and some other controls(buttons, textboxes) in .aspx page. When i run the page, the button displays in the page source of the browser like here, it does not display the onclick event, then how the page calls the button click on the server side, how the server side identify which button cause the submit, and how this page moves to the server side.
|
|
If it is about This server control has also the property UseSubmitBehavior and if this is set to false it will generate an input of type button. Since buttons don't submit the forms, ASP .Net generates some javascript which will do the job
Notice _EVENTTARGET and _EVENTARGUMENT fields. These fields are set so ASP .Net will know which button was clicked on client.
Notice the arguments passed to the __doPostBack function. The name of the input is passed and set to EVENTTARGET. The value of EVENTTARGET will be read by ASP .Net and based on this will fire Click event of the EVENTARGUMENT is used by ItemCommand events, usually placed in the DataBound controls and contains specific data about that action, going to be used later when handling the event. This data can be for example an ID of row in a database table. |
|||||||||
|
|
In ASP.NET web forms all buttons cause a submit of the entire form to the server. The Web forms engine checks what button was clicked and calls the appropriate event handlers. |
|||
|
|
|
If you specify onclick attribute of a control, it doesn't get passed to the client like this. Instead, it only specifies the wiring for the IIS when it parses the aspx file Alternative looks something like this:
So when the event occurs, it knows which method to call. |
|||
|
|