在不丢失视图状态的情况下防止浏览器刷新时重

Preventing webform resubmission on browser refresh without losing viewstate(在不丢失视图状态的情况下防止浏览器刷新时重新提交网络表单)
本文介绍了在不丢失视图状态的情况下防止浏览器刷新时重新提交网络表单的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

重复: 当浏览器重新加载/返回时,如何防止再次写入数据库?

如果用户从浏览器请求刷新,是否有一种优雅的方式来阻止 .aspx 页面重新提交表单数据?

Is there a nice elegant way to stop an .aspx page from resubmitting form data if the user requests a refresh from their browser?

理想情况下不会丢失视图状态.

Ideally without losing the viewstate.

对我来说最优雅的解决方案是将相关控件包装在 asp.net ajax UpdatePanel 中.给大家.

The most elegant solution for me turned out to be wrapping the relevant controls in an asp.net ajax UpdatePanel. Ta everyone.

推荐答案

没有优雅的方式,但有选择.如其他答案之一所述,您可以执行 HTTP 重定向响应.另一种解决方案是通过 Ajax 或 iframe 等方式提交.

There is no elegant way, but there are options. As stated in one of the other answers you can do a HTTP redirect response. Another solution is submitting through means such as Ajax, or through an iframe.

这篇关于在不丢失视图状态的情况下防止浏览器刷新时重新提交网络表单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)