Submitted Questions

  • How the server side identifies button click event

    if i have placed the button control with the OnClick event like {geshibot language="vb"} {/geshibot} 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 {geshibot language="vb"} {/geshibot} here, it does not display the onclick event, then how the page calls the button click on the server side, how the server...

    rupinder

    • Apr 17th, 2013

    , control renders by default an input of type="submit", which submits the form, using the browsers default mechanism. ASP .Net identifies which button was clicked, by checking the posted values. Whe...

    Modather Sadik

    • Oct 5th, 2012

    The secret is in the Tag and the hidden field "id="__EVENTVALIDATION", as you know that the form element supports the Event Attributes "means the abillity to fire scripts when an action happened like...