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 InputHidden

<script runat="server"> Sub submit(Source As Object, e As EventArgs) hidden1.Value=string1.Value p1.InnerHtml="Hidden value= " hidden1.Value End Sub </script> <body> <form runat="server"> Enter some text: <input id="string1" type="text" size="25" runat="server" /> <input type="submit" value="Submit" OnServerClick="submit" runat="server" /> <input id="hidden1" type="hidden" runat="server" /> <p id="p1" runat="server" /> </form> </body> </html>
[ © 2008-2021 myfaqbase.com - A property of WPDC Consulting ]