1

我有一个 MVC 3 网站,当我的页面首次加载时,URL 如下所示:http://mysite.com。但是,我希望它看起来像这样:http ://mysite.com ?user=123(?user=123 是重要的部分)。

如何在 Asp.Net MVC 3 的真正请求处附加查询字符串?

4

1 回答 1

4

像这样的东西。但用户变成302 Redirect

public ActionResult Index(int? user)
{
    if (user == null)
            return RedirectToAction("Index", new { user = 123 });

    // do something...
}
于 2013-05-23T08:09:58.497 回答