一、提交的內容在當前頁面中處理,防止重新整理當前頁面再次提交
protected void ImageButton1_Click(object sender, ImageClickEventArgs e)
{
AdoSql AddComent = new AdoSql();
AddComent.Add_Input_Coment(this.GetNewsID(), this.TextBox3.Text, this.TextBox1.Text, this.TextBox2.Text);
//防止重新整理頁面時候的回傳問題
int iResult;
int iUp = 1000;
Random ro = new Random();
iResult = ro.Next(iUp);
string url = "read_news.aspx?n_id="+Request.QueryString["n_id"];
url = url +"&r=" + iResult.ToString();
Response.Redirect(url);
}
二、轉向到新頁面,後退重複提交的處理。
1、設定頁面無緩衝
protected void Page_Load(object sender, EventArgs e)
{
//設定頁面無緩衝,設定頁面無效
Response.Cache.SetNoStore();
}
protected void btn_Reg_Click(object sender, EventArgs e)
{
省略.......
try
{
usi.Persist(t);
t.Commit();
CommonHelper.DoUpAlert(this.Page, "成功!");
Response.Write("<script language=javascript>window.location.href=window.location.href;</script>");
Response.Redirect("~/index.aspx");
}
catch (Exception ex)
{
t.Rollback();
CommonHelper.DoUpAlert(this.Page, "失敗!");
}
}
2、
//頁面載入
protected void Page_Load(object sender, EventArgs e)
{
//可以在頁面載入時設定頁面的緩衝為“SetNoStore()”,即無緩衝
Response.Cache.SetNoStore();
//Session中儲存的變數“IsSubmit”是標記是否提交成功的
if ((bool)Session["IsSubmit"])
{
//如果表單資料提交成功,就設“Session["IsSubmit"]”為false
Session["IsSubmit"] = false;
//顯示提交成功資訊
ShowMsg.Text = " * 提交成功!";
}
else
//否則的話(沒有提交,或者是頁面重新整理),不顯示任何資訊
ShowMsg.Text = "";
}
//提交按鈕(btnOK)單擊事件
protected void btnOK_Click(object sender, EventArgs e)
{
if (txtTitle.Text.ToString().Trim() == "") ........
else if (txtText.Text.ToString().Trim() == "") .......
else
{
//這裡是將資料提交到資料庫中,省略
/*
string sql = "insert into tab...values(...)";
MyConn.ExecQuery(sql);
*/
//提交成功後,設“Session["IsSubmit"]”為true
Session["IsSubmit"] = true;
//強制轉換頁面(不可少,否則重新整理仍會重複提交,仍轉到本頁),
//通過頁面的轉換將緩衝中的提交的資料都釋放了,即提交的標單資料不會被儲存到緩衝裡,
// 如果後退的話,將會出現該頁無法顯示
Response.Redirect("post.aspx");
}
}