私は2つのパラメータを持つactionresultを持っています:
public ActionResult Index(int a,string b)
{
//some code
return View(b);
}
この URL が自動的に作成されます。
mysite.com/a=1&b=http://site.com/b=1
URLに最初のパラメータ「a」を表示するだけです:
mysite.com/a=1
global.ascx で作成される MVC の既定のルートを使用します。
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
);
私は何をすべきか?ありがとう...