I am a little confused on how I am supposed to know which link button is being pressed. I was gonna get the id of the button pressed but there seems to be no method or property to give me that information. My goal is that I have 4 links and when they click on a link it will show an asp datagrid and fill in the neccessary information based on the link they linked. Maybe i am using the wrong control...<BR><BR>Matt<%@ Page Language="vb" %><BR><script runat="server"><BR> sub doTell(sender as object, e as eventArgs)<BR> response.write(sender.id & "<BR>") <BR> end sub<BR></script><BR><html><BR> <body MS_POSITIONING="GridLayout"><BR> <form id="Form1" method="post" runat="server"><BR> <asp:LinkButton ID="lbtn1" Runat="server" OnClick="doTell">One</asp:LinkButton><BR> <asp:LinkButton ID="lbtn2" Runat="server" OnClick="doTell">Two</asp:LinkButton><BR> </form><BR> </body><BR></html><BR>