创建匹配用户名称的操作方法名称?

时间:2015-04-06 07:35:53

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

我正在使用mvc 5创建用户帐户,我希望用户拥有类似example.com/username的配置文件路径 有可能做到这一点,如果是的话? 谢谢

1 个答案:

答案 0 :(得分:1)

您需要在global.asax中创建路由条目:

RouteTable.Routes.Add(new Route
{
    Url = [username],
    Defaults = new { Controller = "YourController", Action = "YourAction" }
});

然后您的控制器应如下所示:

class YourControllerController : Controller
{
    public ActionResult YourAction(string username)
    { 
        ...
    }
}