Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 ASP.NET 应用程序中...
我正在寻找通过在隐藏字段中与服务器上的值进行比较的令牌来阻止用户双重提交表单。
就在服务器端存储令牌而言,我没有使用会话状态,唯一的另一个地方是我宁愿避免使用的数据库。还有其他地方可以存放吗?
您可以使用 UseSubmitBehavior="false"来防止重复提交表单。一个按钮的例子:
UseSubmitBehavior="false"
<asp:Button ID="bt" runat="server" UseSubmitBehavior="false" OnClientClick="this.disabled=true;" OnClick="bt_Click" />