Click here to Skip to main content
15,881,804 members
Articles / Web Development / ASP.NET
Tip/Trick

Avoid inserting twice when user refresh page in ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.50/5 (4 votes)
28 Aug 2011CPOL 36.1K   8   8
Avoid inserting twice when user refresh page in ASP.NET
Hi all,

This is something that I have done to avoid insertion of records into database twice when user presses refresh. It is so simple. I am just using session and view state, and comparing the dates stored in them.

Here is the code:

VB
'Storing the now date in session variable on page load:
Sub Page_Load (sender As Object, e As EventArgs)
    If Not Page.IsPostBack
        Session("update") = Server.URLEncode(System.DateTime.Now.ToString())
    End If
End Sub


VB
'Storing the date also in view state on page prerender :\
Sub Page_PreRender (sender As Object, e As EventArgs)
    ViewState("update") = Session("update")
End Sub


Finally check if the dates are equal, so if yes we insert and update the session value to the date of insertion, thus the view state value and session value will not be equal in the next postback. Here is the code :



VB
Sub Button1_Click(sender As Object, e As EventArgs)
    If Session("update").ToString() = ViewState("update").ToString() Then
        If AddEmployee(firstName.Text, lastName.Text) = 0
            Message.Text = "Success"
            Session("update") = Server.URLEncode(System.DateTime.Now.ToString())
        Else
            Message.Text = "Failure"
        End If
    Else
        Message.Text = "Failure - Session"
    End If
    firstName.Text = ""
    lastName.Text = ""
End Sub


Hope that you like it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Netiks
Lebanon Lebanon
I have been a programmer for about one year.My power is in asp.net and flash (actionscript 3).I also work on windows application using vb.net and c#.

Comments and Discussions

 
GeneralRe: why would i want to learn vb.net - especially when it has su... Pin
guylwalker30-Aug-11 16:54
guylwalker30-Aug-11 16:54 
GeneralRe: doh, i should have known that! it's been forever since i di... Pin
guylwalker30-Aug-11 16:50
guylwalker30-Aug-11 16:50 
Generalvery nice article // Pin
Denno.Secqtinstien17-Nov-11 23:43
Denno.Secqtinstien17-Nov-11 23:43 
GeneralYou are using an assignment operator (=) in your two If stat... Pin
guylwalker29-Aug-11 12:21
guylwalker29-Aug-11 12:21 
GeneralRe: In VB.NET, (=) is the comparison operator and the assignment... Pin
AspDotNetDev29-Aug-11 13:14
protectorAspDotNetDev29-Aug-11 13:14 
GeneralRe: hey man.This is vb.net and not c#.In vb.net we use only sing... Pin
mhamad zarif29-Aug-11 22:26
mhamad zarif29-Aug-11 22:26 
GeneralReason for my vote of 3 Netural. Just wondering why Server.U... Pin
Nikhil Mittal29-Aug-11 1:44
Nikhil Mittal29-Aug-11 1:44 
GeneralI don't think Server.URLEncode really required here? Pin
Venkatesh Mookkan28-Aug-11 18:08
Venkatesh Mookkan28-Aug-11 18:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.