MVC3 中的区域 - RedirectToAction 未按预期工作

发布于 2024-12-19 01:32:45 字数 725 浏览 1 评论 0原文

我有一个名为覆盖范围的区域。路由就像

context.MapRoute(

           "CoverageSummary", // Route name

           "Coverage/Summary/{policyId}", // URL with parameters

           new { controller = "Coverage", action = "Summary", policyId = UrlParameter.Optional }, // Parameter defaults

           new string[] { "Web.Mvc.Claims.Areas.Coverage.Controllers" }

           );

当我访问页面 Mysite/Coverage/Summary/10 时它会显示一个页面。美好的。 但在 Action 方法中,我有如下代码

return RedirectToAction("Summary","Coverage", new RouteValueDictionary(new { policyID = 10 }));

,但这不会加载页面 Mysite/Coverage/Summary/10 。 它显示 404 错误。 如果我刷新页面,它仍然给出 404。但是如果我在地址栏中剪切并粘贴相同的网址,然后按 Enter 键,它就可以工作了,

这可能是什么原因

I have an area called coverage.The routing is like

context.MapRoute(

           "CoverageSummary", // Route name

           "Coverage/Summary/{policyId}", // URL with parameters

           new { controller = "Coverage", action = "Summary", policyId = UrlParameter.Optional }, // Parameter defaults

           new string[] { "Web.Mvc.Claims.Areas.Coverage.Controllers" }

           );

when I acess the page Mysite/Coverage/Summary/10 it shows a page. fine.
But in an Action methode i have code as below

return RedirectToAction("Summary","Coverage", new RouteValueDictionary(new { policyID = 10 }));

but this is not loading the page Mysite/Coverage/Summary/10 .
it is showing 404 error.
if i refresh the page still it give 404.but if i cut and past the same url in address bar and hit enter it works

What can be the reason

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独享拥抱 2024-12-26 01:32:45

尝试在 RouteValueDictionary 中使用区域属性

return RedirectToAction("Summary","Coverage", new RouteValueDictionary(new { policyID = 10, area = "Your_Area_Name" })); 

Try with area property in your RouteValueDicitionary

return RedirectToAction("Summary","Coverage", new RouteValueDictionary(new { policyID = 10, area = "Your_Area_Name" })); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文