HTML Control ASP.Net

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

Sub SubmitBtn_Click(Source As Object, E as ImageClickEventArgs)
    MyMessage.InnerHTML = "Coordinates Clicked

" _
        & "X: " & E.X & "
" _
        & "Y: " & E.Y
End Sub



Retrieving Clicked Coordinates through the HTMLInputImage Control



    id="MyMessage"
    runat=server
>
    



    id="ImageButton1"
    runat="server"
    type="image"
    src="http://www.rntsoft.com/style/logo.png"
    onserverclick="SubmitBtn_Click" 
>