ASP.net重複提交解決方案

來源:互聯網
上載者:User

 一、提交的內容在當前頁面中處理,防止重新整理當前頁面再次提交
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");
  }
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.