我有一个带有 Form 元素 ( <form runat="server">
) 的母版页、一个带有 Button 元素 ( <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Sync" />
) 的内容页,以及一个包含该Button1_Click
函数的 Code Behind 页面。
用户来到页面并单击按钮。代码背后的代码执行(在服务器上),它更新数据库中的一些表。Code behind 代码所做的最后一件事是InnerHTML
在内容页面上设置 Span 元素的成功或失败消息。
这一切都很好。问题是如果用户刷新页面,表单被重新提交并且浏览器询问这是否真的是用户想要的。如果用户的回答是肯定的,则重新执行 Code Behind 代码并再次更新数据库。如果用户做出否定的回应,那么什么也不会发生。
重新执行代码背后的代码没什么大不了的。它不会伤害任何东西。但这并不是我想要的行为。
我知道我可以使用 Response.Redirect() 重定向回页面,但是用户永远不会看到我的成功或失败消息。我应该提到该消息实际上不仅仅是“成功”或“失败”,否则我想我可以在重定向的查询字符串中添加一些内容。
有没有办法从代码隐藏代码中重置表单元素,以便如果用户刷新页面,表单不会重新提交?
主页面...
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.master.cs" Inherits="IntuitSync.SiteMaster" %>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" xmlns:ipp="">
<head runat="server">
</head>
<body>
<form runat="server">
<div runat="server" id="mainContetntDiv">
<asp:ContentPlaceHolder ID="MainContent" runat="server" />
</div>
</form>
</body>
</html>
内容...
<%@ Page Language="C#" AutoEventWireup="true" MasterPageFile="~/Site.master" CodeBehind="SyncToCloud.aspx.cs" Inherits="IntuitSync.SyncToCloud" %>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Sync" />
<span runat="server" id="SyncStatus"></span>
</asp:Content>
背后的代码...
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.Globalization;
using System.Web;
namespace IntuitSync
{
public partial class SyncToCloud : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
//
}
protected void Button1_Click(object sender, EventArgs e)
{
/*
Do a bunch of stuff and put the results in syncResults which is a List.
*/
SyncStatus.InnerHtml = string.Join("", syncResults.ToArray()); // I'd rather do this...
//Response.Redirect(Request.Url.PathAndQuery, true); // ...and not do this.
}
}
}
非常感谢任何和所有帮助。