asp.net mvc中的post提交方式

asp.net中 mvc的post方式提交也其他普通的提交没有什么大区别,只不过多了自己点特色


页面html表单类似这样:
<form action="http://test.com/edit" method="post">
id:<input name="id" type="text" />
<input type="submit" value="submit">
</form>

mvc代码有两个方式

1.在路由中配置url路径,类似http://test.com/edit
然后在controller类的action方法中

[HttpPost]
public ActionResult Edit()
{
      tring temp = Request.Form["id"];//html表单中的控件的name值
......

}

2.第二种方式,是在路由配置详细的路径
路由中类似这样"edit/{id}/{name}"
把参数定义在路由映射中,参数的名称就是表单中控件名称
这样就可以在controller类中的action方法中这样写
[HttpPost]
        public ActionResult Edit(string id,string name)
        {
            //string temp = Request.Form["id"];
            return View();
        }
方法的参数就是html表单中的参数

本文使用Blog_Backup未注册版本导出,请到soft.pt42.com注册。

转载于:https://www.cnblogs.com/zjypp/archive/2011/08/09/2319272.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值