Mega Code Archive

 
Categories / ASP.Net / Asp Control
 

Get Image Button mouse cursor coordinates (C#)

<%@ Page Language="C#" %> <script runat="server">     protected void btnTarget_Click(object sender, ImageClickEventArgs e)     {         if ((e.X > 90 && e.X < 110) && (e.Y > 90 && e.Y < 110))             lblResult.Text = "You hit the target!";         else             lblResult.Text = "You missed!";     } </script> <html> <head>     <title>ImageButton Target</title> </head> <body>     <form id="form1" runat="server">     <div>          <asp:ImageButton         id="btnTarget"         ImageUrl="http://www.rntsoft.com/style/logo.png"         Runat="server" OnClick="btnTarget_Click" />          <br /><br />          <asp:Label         id="lblResult"         Runat="server" />          </div>     </form> </body> </html>