Displaying a Graphic on an HTML Button Control (VB.net) : Button « HTML Control « ASP.Net






Displaying a Graphic on an HTML Button Control (VB.net)

<%@ Page Language=VB Debug=true %>
<script runat=server>
Sub SubmitBtn_Click(Source As Object, E as EventArgs)
    MyMessage.InnerHTML = "Hello " & YourName.Value
End Sub
</SCRIPT>
<HTML>
<HEAD>
<TITLE>Displaying a Graphic on an HTMLButton Control</TITLE>
</HEAD>
<BODY>
<form runat="server">
<Span
    id="MyMessage"
    runat=server
>
</Span>    
<BR>    
Name: <BR>
<Input
    id="YourName"
    runat="server"
    type="text"
>
<BR>
<BR><BR>
<button
    id="Button1"
    runat="server"
    onserverclick="SubmitBtn_Click" 
>
    <img 
        src="http://www.java2s.com/style/download.png" 
    />
</button>
</Form>
</BODY>
</HTML>
           
       








Related examples in the same category

1.HTML Control: Button action (C#)