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 Button control

<script runat="server"> Sub button1(Source As Object, e As EventArgs) p1.InnerHtml="You clicked the blue button!" End Sub Sub button2(Source As Object, e As EventArgs) p1.InnerHtml="You clicked the pink button!" End Sub </script> <body> <form runat="server"> <button id="b1" OnServerClick="button1" style="background-color:#e6e6fa; height=25;width:100" runat="server"> Blue button! </button> <button id="b2" OnServerClick="button2" style="background-color:#fff0f5; height=25;width:100" runat="server"> Pink button! </button> <p id="p1" runat="server" /> </form> </body> </html>
[ © 2008-2021 myfaqbase.com - A property of WPDC Consulting ]