ASP.NET MVC中get 和post方法传递数据的方式

Get方法传递参数

通过mvc中默认的url地址书写格式:控制器/方法名/参数

//必须使用id作为参数名,否则运行时会报错
public ActionResult Index(int id) {
    ViewBag.name = id.ToString();
    return View();
}

后台必须在函数参数中使用id作为名字 其他的都会报错

使用?加参数名=参数值的写法,如果有多个参数使用&来连接

后台使用 var id = Request.QueryString[“id”]来获得

//
public ActionResult Index() {
    var name = Request.QueryString["name"];
    return View();
}

Post方法传递参数

[HttpPost]
public ActionResult PostDemo(FormCollection form)
{
    //第一种 使用Request.Form对象
    string  name = Request.Form["name"];
    ViewBag.name = name;
    //第二种 使用参数
    string  name2 = form["name"];
    ViewBag.name2 = name2;
    return View();
}

你可能感兴趣的:(C#)