0

这是我的表格

@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");
}

我没有在这里获取文本区域的值,而是断点中的值,请参见图片。 在此处输入图像描述

4

2 回答 2

1

您的代码应如下所示:

@using (Html.BeginForm("EditPayments", "BookingPathLabelsCms"))
{
    if (@Model.DisplayName == "Payment Labels")
    { 
        @Html.TextBoxFor(m => m.SeeIt)
        @Html.TextBoxFor(m => m.SeeItNoSelect)

        <div class="cmsButtonContainer">
            <a href="@Url.Action("Index", "BookingPathLabelsCms")">Cancel it</a>
            <input type="submit" name="Save" value="Save it"@* onmouseover="copyto();"*@ />
        </div>
    }
}

当然,您的 ViewModel BookingPathLabelsCmsViewModel 应该具有 SeeIt 和 SeeItNoSelect 属性。之后,MVC 将绑定正确输入的数据。

于 2013-06-18T12:09:43.320 回答
0

首先创建一个具有属性的类。

public class TextAreaProperty
{
    public string MyTextAreaValue { get; set; }
}

在视图上使用声明如下:

@model <project_name>.Models.<Class_name>

在这种情况下:

@model MvcApplication1.Models.TextAreaProperty

使用此文本区域剃刀

@Html.TextAreaFor(x=> x.MyTextAreaValue)  

在方法后接收参数类型 TextAreaProperty

[HttpPost]
public ActionResult Index(TextAreaProperty textAreaProperty)
{
    return View();
}

您将从 textAreProperty 获取值。

于 2013-06-18T12:07:14.560 回答