これを読んでくれてありがとう。
クエリ文字列からアクションにデータを渡したい。URL
MyController/MyAction?lob=a
これを試しました:
[HttpGet]
public ActionResult MyAction()
{
var model = new SModel();
model.lob = Request.QueryString["lob"];
return View(model);
}
[HttpGet]
public ActionResult MyAction(string lob)
{
var model = new SModel();
model.lob = lob;
return View(model);
}
[HttpGet]
public ActionResult MyAction(FormCollection values)
{
var model = new SModel();
model.lob = values["lob"];
return View(model);
}
"lob" は常に null です。
何か案は?