How to distinguish which button was clicked?

S

Shapper

Hello,

I have this function in my aspx.vb code:

Public Sub Now(ByVal sender As System.Object, ByVal e As
System.Web.UI.ImageClickEventArgs)

Response.Write(sender)
Response.Write(e)

End Sub

And 2 image buttons in my HTML code:
<asp:ImageButton id="ib01" runat="server"
OnClick="Now"></asp:ImageButton>
<asp:ImageButton id="ib02" runat="server"
OnClick="Now"></asp:ImageButton>

How can I distinguish which image button was clicked in my function Now?

Thanks,
Miguel
 
C

Craig Deelsnyder

Shapper said:
Hello,

I have this function in my aspx.vb code:

Public Sub Now(ByVal sender As System.Object, ByVal e As
System.Web.UI.ImageClickEventArgs)

Response.Write(sender)
Response.Write(e)

End Sub

And 2 image buttons in my HTML code:
<asp:ImageButton id="ib01" runat="server" OnClick="Now"></asp:ImageButton>
<asp:ImageButton id="ib02" runat="server" OnClick="Now"></asp:ImageButton>

How can I distinguish which image button was clicked in my function Now?

Thanks,
Miguel

See my answer on your post a couple of hours ago. Use the OnCommand
mechanism....

http://authors.aspalliance.com/aspxtreme/aspnet/syntax/imagebuttonwebcontrol.aspx
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,906
Latest member
SkinfixSkintag

Latest Threads

Top