1.页面中
@using (Html.BeginForm( ))
{
@Html.ValidationSummary(true)
<tr>
备注说明:
@Html.TextAreaFor(model => model.Remark, new { style = "height:100px;width:300px" })
</tr>
<tr>
验证码:
<input type="text" id="txtyzm" class="regbox"/>
}
2 control中
[HttpPostAttribute]
public ActionResult Register( 实体名 fc)
{
string remark=fc.remark; //可以获取成功
string yzm=request.Form["txtyzm"] // 获取不到
}
当 参数为 FormCollection 时也获取不到验证码
求 怎样获取到验证码