这是我的表格
@using (Html.BeginForm("EditPayments", "BookingPathLabelsCms"))
{
if (@Model.DisplayName == "Payment Labels")
{
<textarea id="seeit" name="seeit" rows="5" cols="10"></textarea>
<textarea id="seeitNoSelect" name="seeitNoSelect" rows="5" cols="10"></textarea>
<div class="cmsButtonContainer">
<a href="@Url.Action("Index", "BookingPathLabelsCms")">Cancel it</a>
<input type="submit" name="Save" value="Save it"@* onmouseover="copyto();"*@ />
</div>
}
}
这是我的控制器动作
public ActionResult EditPayments(BookingPathLabelsCmsViewModel model)
{
string txtarea = Request.Form["seeit"];
return RedirectToAction("Index");
}
我没有在这里获取文本区域的值,而是断点中的值,请参见图片。