I\'m trying to use asp:
I want a way to spe
Use HTML textarea with runat="server" to access it in server side. This solution has less pain than using javascript or regex.
runat="server"
Note: To access Text Property in server side, you should use txt1.Value instead of txt1.Text
Text
txt1.Value
txt1.Text