Find knowledge base article(s) by searching for keywords in the title e.g. type linux in the search box below
Find knowledge base article(s) by browsing the subject categories of articles
Technology quick references, cheatsheets, user manuals etc.
Shop Online through ShopifyLite
Tutorials on various IT applications.
Search Title    (UL:0 |SS:f)

Web >> Development >> ASP.Net >> HTML Controls >> How to use InputImage control

<script runat="server"> Sub button1(Source As Object, e As ImageClickEventArgs) p1.InnerHtml="You clicked the smiley button!" End Sub Sub button2(Source As Object, e As ImageClickEventArgs) p1.InnerHtml="You clicked the angry button!" End Sub </script> <body> <form runat="server"> <p>Click on one of the images:</p> <p> <input type="image" src="/images/smiley.gif" OnServerClick="button1" runat="server" /> </p> <p> <input type="image" src="/images/angry.gif" OnServerClick="button2" runat="server" /> </p> <p id="p1" runat="server" /> </form> </body> </html>
[ © 2008-2021 myfaqbase.com - A property of WPDC Consulting ]