how to get the value of textarea using c#?
Two ways
1. Add runat="server" and access the control server side.
2. Set name atrribute name = "text1" and in code get in following way on Button Click.
string s = Requst.Form["text1"];
© COPYRIGHT 2024 ASPSnippets.com ALL RIGHTS RESERVED.