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

<script runat="server"> Sub submit(sender As Object, e As EventArgs) p1.InnerHtml = "<b>You wrote:</b> " & textarea1.Value End Sub </script> <body> <form runat="server"> Enter some text:<br /> <textarea id="textarea1" cols="35" rows="6" runat="server" /> <input type="submit" value="Submit" OnServerClick="submit" runat="server" /> <p id="p1" runat="server" /> </form> </body> </html>
[ © 2008-2021 myfaqbase.com - A property of WPDC Consulting ]