ASP.NET MVC:在 Firefox 3 中未提供参数时重定向回页面

发布于 2024-07-16 00:21:31 字数 669 浏览 3 评论 0原文

我正在尝试做与这个问题中详细说明的完全相同的事情:

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 技术交流群。

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

发布评论

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

评论(2

凉城凉梦凉人心 2024-07-23 00:21:31

尝试这个。 打开火狐浏览器。 在地址栏中输入“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?

旧夏天 2024-07-23 00:21:31

我不知道你的网址是如何配置的,但也许你处于递归循环中? 您不断重定向到同一页面?

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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文