ASP.NET重新加载(重定向)视图,而无需更改Chrome的后退按钮顺序

发布于 2025-01-18 04:01:32 字数 460 浏览 0 评论 0原文

我可以以某种方式重定向或重新加载页面,而无需在后退按钮队列(或 JS 中的 History.back() )中添加条目吗?

目前,我使用“RedirectToAction()”作为 Post 的返回值来保存数据。

    public virtual ActionResult NotizAktualisieren(long id, string notiz)
    {
        var data = Client.Get<TestlaufAusfuehrung>(id);

        data.Notiz = notiz;

        Client.Put(data);

        return RedirectToAction(nameof(Ergebnisse), new { id });
    }

Firefox 似乎会自动忽略相同的条目,我能为 chrome 做什么?

Can I somehow redirect or reload the page without an entry in the back button queue (or history.back() in JS)?

Currently, I'm using "RedirectToAction()" as the return value for a Post to save data.

    public virtual ActionResult NotizAktualisieren(long id, string notiz)
    {
        var data = Client.Get<TestlaufAusfuehrung>(id);

        data.Notiz = notiz;

        Client.Put(data);

        return RedirectToAction(nameof(Ergebnisse), new { id });
    }

Firefox seems to automatically ignore same entries, what can I do for chrome?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文