HTML Control ASP.Net

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

Sub SubmitBtn_Click(Source As Object, _
    E as ImageClickEventArgs)
    MyMessage.InnerHTML = "Hello " & YourName.Value
End Sub



Using the HTMLInputImage Control



    id="MyMessage"
    runat=server
>
    

    
Name: 

    id="YourName"
    runat="server"
    type="text"
>





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