前台取的值。
@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"];