我正在使用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。任何人都可以帮忙吗
由于