| Author: Devendra 04 Jul 2009 | Member Level: Gold | Rating:  Points: 2 |
If you want to call click event of Another button by pressing First Button then you have to make same signature for both
Like
protected void btnSubmit_Click(object sender, imageeventargs e) { }
For HTML Pages
Add Clcik Event <asp:ImageButton ID="ImageButton1" runat="server" BorderStyle="None" ImageUrl="~/images/ActionButtons/Add.gif" OnClick="btnSubmit_Click" TabIndex="8" ValidationGroup="ENTRY" />
|
| Author: K'ran 05 Jul 2009 | Member Level: Gold | Rating:  Points: 2 |
just like this simple
protected void Button1_Click(object sender,eventargs e) { button2_Click(object sender,eventargs e); ]
Kiran Kumar Koyelada
|