如何在页面加载时向路径添加查询字符串?

时间:2013-05-23 07:55:49

标签: asp.net-mvc asp.net-mvc-3

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

如何在Asp.Net MVC 3中真正乞求查询字符串?

1 个答案:

答案 0 :(得分:4)

像这样的事情。但是用户变为302 Redirect

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

    // do something...
}