从文本框中读取数据(输入)

时间:2013-06-10 15:07:46

标签: asp.net-mvc input textbox formcollection

我正在使用mvc asp.net尝试使用FormCollection

从表单中获取数据

这是我的观点中的代码:

<input disabled="disabled" id="resultHome" name="resultHome"/>

这是我的控制器中使用的代码

[AcceptVerbs(HttpVerbs.Post)]
    public ActionResult addStatistic(StatisticModel model, FormCollection form)
    {
        string goaltimeHome = form["resultHome"];
    }

该值始终为null。任何人都可以帮忙吗

由于

1 个答案:

答案 0 :(得分:2)

浏览器不submit the values of disabled controls。创建一个隐藏字段,其中包含要发布到控制器的值。