Hello,
I am using a webform which uses two forms (<form id="form1" runat="server"></form> and <form id="form2"></form>). I have added a "Save" button and a "Reset" button on each of these forms.
I want to function this screen something like this:
1. If user changes data in "form1" and clicks on "Reset1" button. Data only in "form1" will reset. "form2" data will be unchanged.
2. If user changes data in "form2" and clicks on "Reset2" button. Data only in "form2" will reset. "form1" data will be unchanged.
To achieve this I have to applu UpdatePanels to Save1 and Save2 buttons. Doing this I am able to get Save1 button click. But it is not firing Save2 button click. I am not getting why.
The solution to this can be detecting the eventtarget on page_load. But unfortunately I am getting ...
Go to the complete details ...