如果不是这样的话,对不起我的英语,我希望你能理解我。
有一个问题,在 Asp.Net MVC 3 中找不到默认动作项目。我有包含动作索引的 ContestController。在 global.asax 拼写标准代码中
routes.MapRoute (
"Default", / / Route name
"{controller} / {action} / {id}", / / URL with parameters
new {controller = "Home", action = "Index", id = UrlParameter.Optional} / / Parameter defaults
);
在 HomeController 我执行以下操作
return RedirectToAction ("index", "contest");
比赛控制器
public class ContestController : BaseController
{
public ActionResult Index()
{
// Code
return View();
}
public ActionResult VoteFor(int id)
{
//code
return View();
}
[HttpPost]
public ActionResult SaveContest(int id)
{
// code
return RedirectToAction("Index");
}
public ActionResult ResultVoting()
{
//code
return View();
}
}
在地址栏中只出现localhost / 竞赛 并最终落下 404 错误页面未找到。如果手动附加本地主机/竞赛/索引 一切正常。虽然最近,一切正常,旧的回滚更改不起作用=(你能告诉我可能是什么问题吗?
我在家庭控制器的动作中调用重定向
[HttpPost]
public ActionResult SetLocale()
{
int localeId;
if(int.TryParse(Request.Params["fieldId"], out localeId))
{
this.UserResults.SetLocaleId(localeId);
}
return RedirectToAction("index", "contest");
}