Asp Control ASP.Net

<%@ Page Language=VB Debug=true %>

Sub Page_Load(ByVal Sender as Object, ByVal E as EventArgs)
End Sub
Sub SubmitBtn_Click(Sender As Object, E As ImageClickEventArgs)
    Dim String1 as String
    Dim String2 as String
    If E.X < 18 then
        String1 = "Left"
    Else
        String1 = "Right"
    End If
    If E.Y < 18 then
        String2 = "Top"
    Else
        String2 = "Bottom"
    End If
    lblLocationClicked.Text = "You clicked in the " & String2 _
        & "-" & String1 & " portion of the image."
End Sub



Determining the Coordinates Clicked on the Image of an ImageButton Control


    id="lblLocationClicked" 
    runat="server"
/>



    id="imagebutOK"
    alternatetext="View Coordinates"
    imageurl="http://www.rntsoft.com/style/logo.png"
    onclick="SubmitBtn_Click" 
    runat="server"
/>