| Author: Gomathi NS 06 Aug 2007 | Member Level: Silver | Rating: Points: 2 |
Hi, You can maintain all your controls in a session so that you can see all the button after submitting too.
Also try the following code for getting the last fired button
if (Page.IsPostBack) { //*** Gets the Control that fires the event finally string syscontrol = (string)Request.Form["__EVENTTARGET"]; }
|
| Author: Ranjith 06 Aug 2007 | Member Level: Silver | Rating: Points: 2 |
u put the code with in postback
|