在后台获取Textarea控件的值
时间:2014-10-17 18:30:14
收藏:0
阅读:343
使用Request.Form方法
1.在前台设置name 属性
<textarea name="Content">hdjfhjdfhdj</textarea>
2.在后台根据name获取值
string s = Request.Form["Content"].ToString();
原文:http://www.cnblogs.com/songxia/p/4031642.html
评论(0)