在后台获取Textarea控件的值

使用Request.Form方法

1.在前台设置name 属性

 <textarea name="Content">hdjfhjdfhdj</textarea>

2.在后台根据name获取值

string s = Request.Form["Content"].ToString();
原文地址:https://www.cnblogs.com/songxia/p/4031642.html