Asp Control ASP.Net

<%@ Page Language="VB" %>


    Sub btnTarget_Click(ByVal sender As Object, ByVal e As ImageClickEventArgs)
        If (e.X > 90 And e.X < 110) And (e.Y > 90 And e.Y < 110) Then
            lblResult.Text = "You hit the target!"
        Else
            lblResult.Text = "You missed!"
        End If
    End Sub



    ImageButton Target


    
            id="btnTarget"
        ImageUrl="http://www.rntsoft.com/style/logo.png"
        Runat="server" 
        OnClick="btnTarget_Click"
        Width="200"
        Height="300" />
    
            id="lblResult"
        Runat="server" />