当前位置: 代码迷 >> ASP.NET >> MVC3 前台 传到 后台
  详细解决方案

MVC3 前台 传到 后台

热度:4694   发布时间:2013-02-25 00:00:00.0
MVC3 前台 传入 后台。
前台取的值。

@list.count

能把 这个值 传入 后台吗?

怎么传?
------最佳解决方案--------------------------------------------------------
这个传值和MVC模式 关系不是太大,还是那几种的方法, input 表单,url地址,ajax等。
不过提交过来的时候MVC里面多了个表单对象可以用下

[HttpPost]
Public ActionResult Test(FormCollection collection)
{
    //页面上所有提交过来的input对象都在FormCollection里面
     strig val = collection["name"]; //取页面input name="name"元素的value值
}

------其他解决方案--------------------------------------------------------
在线等,求解答。
------其他解决方案--------------------------------------------------------
怎么传???url链接传、POST提交、ajax方式...
------其他解决方案--------------------------------------------------------
放到一个hidden控件里面传
------其他解决方案--------------------------------------------------------
viewdata
------其他解决方案--------------------------------------------------------
前台
<input type="hidden" name="listcount" value="@list.count" />

提交到后台

获取

Request.Forms["listcount"];
  相关解决方案