ASP.NET MVC:在 Firefox 3 中未提供参数时重定向回页面
我正在尝试做与这个问题中详细说明的完全相同的事情:
ASP.NET MVC:当没有给 URL 提供参数时重定向回页面
这是我的代码:
public ActionResult Details(long? id)
{
if (!id.HasValue)
return RedirectToAction("Index");
Models.Track track = Models.Track.GetTrack(id.Value);
if (track == null)
return View("NotFound");
else
return View("Details", track);
}
但是,当我调用 RedirectToAction("Index") 时
当我在 Firefox 3 中查看该页面时,页面挂起。 它在 IE7 中重定向得很好。
Firefox 3 中的 RedirectToAction 是否存在任何已知问题?
I'm trying to do exactly the same thing as detailed in this question:
ASP.NET MVC: Redirecting back to page when no parameter is given to URL
Here's my code:
public ActionResult Details(long? id)
{
if (!id.HasValue)
return RedirectToAction("Index");
Models.Track track = Models.Track.GetTrack(id.Value);
if (track == null)
return View("NotFound");
else
return View("Details", track);
}
However, when I call RedirectToAction("Index")
and I'm viewing the page in Firefox 3, the page hangs. It redirects fine in IE7.
Are there any known issues with RedirectToAction in Firefox 3?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试这个。 打开火狐浏览器。 在地址栏中输入“about:config”。 按回车键。 接受警告。 然后查找:
network.dns.disableIPv6,
双击该行将其设置为 true。 立即尝试您的网络应用程序。 那样有用吗?
Try this. Open Firefox. Type "about:config" in the address bar. Hit enter. Accept the warning. Then look for:
network.dns.disableIPv6
set it to true by double-clicking the line. Try your web app now. Does that work?
我不知道你的网址是如何配置的,但也许你处于递归循环中? 您不断重定向到同一页面?
I don't know how your urls are configured but maybe you are in a recursive loop? That you are continously redirecting to the same page?