标签: asp.net-mvc razor
在视图中我有
@Html.TextArea("ChangeStatusCommentTxt")
在控制器中我试图通过
Request["ChangeStatusCommentTxt"];
它返回值
但是当我使用
@Html.TextArea("ChangeStatusCommentTxt",new{@class="someclass"});
它没有返回价值!!那是为什么?