Click here to Skip to main content
15,893,790 members
Articles / Web Development / ASP.NET
Article

The Intricacies of the IsPostBack If-Block in ASP.NET

Rate me:
Please Sign up or sign in to vote.
2.70/5 (33 votes)
24 Jan 20061 min read 111.2K   895   29   12
An article explaining IsPostBack checking in ASP.NET.

Image 1

Introduction

This article explains the correct usage of the IsPostBack checking in Asp.Net.

Using the code

The Presence of an if(!IsPostBack) code block in any Asp.Net C# article or book chapter is as common as a bird on a tree branch. But a proper explanation about its usage is as rare as an unicorn. This short article tries to address this issue.

When an aspx page is displayed for the first time, any code within the Page_Load event, including the if(!IsPostBack) is executed. When the same page is displayed in subsequent times, only the code outside the if(!IsPostBack) is executed. The second scenario happens when there is, say a button_click event, which reads some values either from a server control or a local variable of the page and displays the same page with these values.

The enclosed demo project has a Dropdown List box named lstCity and a local boolean variable named whetherIsGood. The Dropdown list box has three possible cities as items – Houston, Dallas and Austin. The Page_Load event sets the SelectedIndex of the listbox to Dallas (by assigning a value of 1) and the whetherIsGood variable to true. This could be done in three different possible ways as shown below. When the button “Set” is clicked it shows the selected item from the list box and the variable value in two text boxes.

Code1:

C#
private void Page_Load(object sender, System.EventArgs e)
{
    //If you change the displayed city say from Dallas 
    //to Austin on the page and click "Set" button, 
    //it correctly shows Austin in the text box. 
    //But the whetherIsGood variable has a value of false.
    if(!IsPostBack)
    {
        lstCity.SelectedIndex = 1;
        whetherIsGood = true;
    }
}

Code 2:

C#
private void Page_Load(object sender, System.EventArgs e)
{
    //If you change the displayed city say from Dallas 
    //to Austin on the page and click "Set" button, 
    //it correctly shows Austin in the text box. 
    //And the variable also correctly has a value of true.
    if(!IsPostBack)
    {
        lstCity.SelectedIndex = 1;
    }
    whetherIsGood = true;
}

Code 3:

C#
private void Page_Load(object sender, System.EventArgs e)
{
    //If you change the displayed city say from Dallas 
    //to Austin on the page and click "Set" button, 
    //it wrongly shows Dallas in the text box. 
    //But the variable correctly has a value of true.
    
    lstCity.SelectedIndex = 1;
    whetherIsGood = true;
}

As explained within the code comments, Code 2 has the expected behavior. So put the code which sets parameters to a server control within the if(!IsPostBack) code block, and put any code which sets a local variable outside this block, unless you are using a static variable.

Points of Interest

You could find a related article at MSDN.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionISPost Back Pin
Member 106951989-May-14 6:31
Member 106951989-May-14 6:31 
GeneralMy vote of 4 Pin
Channard12-Nov-10 5:18
Channard12-Nov-10 5:18 
QuestionWhy? Pin
nsimeonov1-Feb-06 11:01
nsimeonov1-Feb-06 11:01 
AnswerRe: Why? Pin
ThirstyMind1-Feb-06 11:27
ThirstyMind1-Feb-06 11:27 
GeneralRe: Why? Pin
nsimeonov1-Feb-06 11:42
nsimeonov1-Feb-06 11:42 
GeneralRe: Why? Pin
ThirstyMind1-Feb-06 11:52
ThirstyMind1-Feb-06 11:52 
GeneralRe: Why? Pin
nsimeonov1-Feb-06 11:58
nsimeonov1-Feb-06 11:58 
AnswerRe: Why? Pin
.void.7-Sep-06 10:57
.void.7-Sep-06 10:57 
GeneralRe: Why? Pin
nsimeonov7-Sep-06 11:18
nsimeonov7-Sep-06 11:18 
GeneralRe: Why? Pin
.void.8-Sep-06 3:14
.void.8-Sep-06 3:14 
GeneralRe: Why? Pin
nsimeonov8-Sep-06 3:29
nsimeonov8-Sep-06 3:29 
It isn't about security, it is about page initialization and what actions you are supposed to perform - do you have to initialize some objects or they are already in tact. You may have and clicking the button will open "SomeOtherPage.aspx" and HttpMethod will indicate a POST not a GET, however IsPostBack wouldn't be true.

The "hash" code you are referring is actually the hidden field __VIEWSTATE containing the values for all controls with property EnableViewState set to "true". So be careful (this is the default setting as well): If you want to be able to trigger "OnChange" event for textboxes or dropdownlists - leave it true, if not - you better set it to false and not waste bandwidth. DataGrids use ViewState heavily and add way too much overhead so if you can update the grid on every page load it would be better IMO.

>>
since it's somehow of an emulator of desktop (windows) applications for the web
<<

Oh man... oh man... How long did you work with asp.net, honestly, because what I read shows me that you don't understanding a single thing about how ASP.NET works and what it really is. This is one of the most ignorant and uniformed statements I've ever read recently... no joke. I know I wrote some stupid things on and off but saying that ASP.NET is somohow of an emulator of a desktop application for the web - now this deserves an award! Smile | :)
GeneralRe: Why? Pin
.void.8-Sep-06 15:25
.void.8-Sep-06 15:25 

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.