Click here to Skip to main content
15,887,135 members
Articles / Web Development / ASP.NET

Enabling the browser back button for GridView paging and sorting in AJAX 1.1 and 3.5

Rate me:
Please Sign up or sign in to vote.
4.50/5 (5 votes)
12 Feb 2009CPOL3 min read 46.7K   35   2
How to enable the browser back button for GridView paging and sorting in AJAX 1.1 and 3.5.

Introduction

Generally, we use the browser back button frequently to go to the back/previous pages. It is most useful when we are searching using search controls (textboxes, dropdowns, buttons..), or when using paging, sorting etc.

In all these cases, when there is a postback, the browser is updated with the information of the page visited, and hence the back button gets enabled automatically. However, if we are updating pages using AJAX asynchronous requests, updating the browser history is not taken care automatically. We need to do some tweaks to achieve this, and enable the browser back button by storing the state into the browser history.

The original article was posted at: http://interviews.dotnetthread.com/2009/02/enabling-browser-back-button-for.html.

Description

In a normal web page developed using ASP.NET, browser history is updated for every postback, i.e., when the user clicks on the paging links, sorting links, or search buttons etc. Hence, the user can easily check the previous records by clicking on the browser back button.

In an AJAX enabled web page, where we have a GridView inside an UpdatePanel, browser history does not get updated as post back happens asynchronously, which the browser is not aware of.

In ASP.NET AJAX 3.5

In .NET Framework 3.5, we have AJAX extensions like ScriptManager and UpdatePanel, using which we develop AJAX enabled web pages.

In ASP.NET SP1, we have a History control which allows us to add history points to our AJAX enabled page’s postbacks and hence enable the back button navigation for users.

Enabling the browser back button for GridView paging and sorting using History points in ASP.NET 3.5 SP1

  1. Set the property EnableHistory="true" for the ScriptManager.
  2. GridView paging:
    1. Handle the OnPageIndexChanging event of the GridView with an event handler (e.g.: OnPageIndexChanging = "GridView1_PageIndexChanging").
    2. Add the following handler code in the code-behind:
    3. C#
      protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
      {
          // To check if post back is Asynchronous
          if (ScriptManager1.IsInAsyncPostBack && !ScriptManager1.IsNavigating)
          {
              //To add History point with gridview selected page index value.
              ScriptManager1.AddHistoryPoint("PageIndex", 
                             GridView1.PageIndex.ToString());
          }
      }
    4. Handle the OnNavigate event of the ScriptManager with an event handler (e.g.: OnNavigate="ScriptManager1_Navigate").
    5. Add the following handler code in the code-behind:
    6. C#
      protected void ScriptManager1_Navigate(object sender, HistoryEventArgs e)
      {
          // Get GridView PagIndex from history 
          string pageIndex = e.State["PageIndex"];
          if (string.IsNullOrEmpty(pageIndex))
          {
              GridView1.PageIndex = 0;
          }
          else
          {
              GridView1.PageIndex = Convert.ToInt32(pageIndex);
          }
      }
    7. Now, we can navigate across the pages with an enabled back button.
    8. In the above case, PageIndex is stored in the URL in encrypted format (the page state is encoded in the querystring of the browser, meaning that visitors can bookmark a particular state of an AJAX application). If you make EnableSecureHistoryState=“false”, then it is directly visible in the URL as: http://localhost/Sample/Default.aspx#&&PageIndex=1.
  3. GridView sorting:
    1. Handle the OnSorting event of the GridView with an event handler (e.g.: OnSorting="GridView1_Sorting").
    2. Add the following handler code in the code-behind:
    3. C#
      protected void GridView1_Sorting(object sender, GridViewSortEventArgs e)
      {
          // Create the history state for Direction and Expression
          ScriptManager1.AddHistoryPoint("SortExpression", e.SortExpression);
          ScriptManager1.AddHistoryPoint("SortDirection", 
                                         e.SortDirection.ToString());
      }
    4. Handle the OnNavigate event of the ScriptManager with an event handler (e.g.: OnNavigate="ScriptManager1_Navigate").
    5. Add the following handler code in the code-behind:
    6. C#
      protected void ScriptManager1_Navigate(object sender, HistoryEventArgs e)
      {
          if (!string.IsNullOrEmpty(e.State["SortExpression"]))
          {
              string sortExpression = e.State["SortExpression"];
              SortDirection sortDirection = 
                (SortDirection)Enum.Parse(typeof(SortDirection), 
                                          e.State["SortDirection"]);
              // Sort the grid according to the sort
              // information in the history state
              GridView1.Sort(sortExpression, sortDirection);
          }
      }
    7. In the above case, SortExpression and SortDirection are stored in the URL in encrypted format (the page state is encoded in the querystring of the browser, meaning that visitors can bookmark a particular state of an AJAX application). If you make EnableSecureHistoryState = “false”, then it is directly visible in the URL as http://localhost/Sample/Default.aspx#&&SortDirection= Ascending&SortExpression=SectorName.

Enabling browser back button for GridView paging and sorting in ASP.NET 2.0 (AJAX 1.1) using Nikhil's UpdateControls

  1. Download Nikhil's UpdateControls here: http://www.nikhilk.net/Content/Samples/UpdateControls.zip.
  2. Create an AJAX enabled website in ASP.NET 2.0.
  3. Add a reference to UpdateControls.dll.
  4. Register the tagprefix:
  5. ASP.NET
    <%@ Register Assembly="nStuff.UpdateControls" 
        Namespace="nStuff.UpdateControls" TagPrefix="uc" %>

    Then, add the UpdateHistory control below the ScriptManager.

    ASP.NET
    <uc:UpdateHistory ID="UpdateHistory1" runat="server" 
        OnNavigate="ScriptManager1_Navigate">
    
    </uc:UpdateHistory>
  6. GridView paging and sorting:
    1. Handle the GridView's Sorting and PageIndexChanging events as below, where we will add an entry to the History with PageIndex or SortExpression and Direction.
    2. C#
      protected void GridView1_Sorting(object sender, GridViewSortEventArgs e)
      {
          // Create the history state for Direction and Expression
          UpdateHistory1.AddEntry("SortDirection=" + 
            e.SortDirection.ToString() + "&&SortExpression=" + e.SortExpression);
      }
      protected void GridView1_Sorting(object sender, GridViewSortEventArgs e)
      {
          // Create the history state for Direction and Expression
          ScriptManager1.AddHistoryPoint("SortExpression", e.SortExpression);
          ScriptManager1.AddHistoryPoint("SortDirection", e.SortDirection.ToString());
      }
  7. Finally, we need to handle the OnNavigate event of the UpdateHistory control to get the PageIndex and SortExpression and set them to the GridView. This OnNavigate event is fired when the user tries to navigate using the browser back and forward buttons.
  8. C#
    protected void ScriptManager1_Navigate(object sender, HistoryEventArgs e)
    {
        string entryName = e.EntryName.ToString();
        if (e.EntryName.Contains("SortDirection") && 
            e.EntryName.Contains("SortExpression"))
        {
            string[] splitter = new String[1];
            splitter[0] = "&&";
            string[] text = e.EntryName.Split(splitter, StringSplitOptions.None);
            string sortExpression = text[1].Replace("SortExpression=", "");
            string strSortDirection = text[0].Replace("SortDirection=", "");
            SortDirection sortDirection = 
              (SortDirection)Enum.Parse(typeof(SortDirection), strSortDirection);
    
            // Sort the grid according to the sort information in the history state
            GridView1.Sort(sortExpression, sortDirection);
        }
    
        // Get GridView PagIndex from history 
        string pageIndex = string.Empty;
        if (e.EntryName.Contains("PageIndex"))
        {
            pageIndex = e.EntryName.Replace("PageIndex=", "");
        }
        if (string.IsNullOrEmpty(pageIndex))
        {
            GridView1.PageIndex = 0;
        }
        else
        {
            GridView1.PageIndex = Convert.ToInt32(pageIndex);
        }
    }

We can achieve the same functionality using the following libraries as well:

  1. SWFAddress
  2. History Event: jQuery Plug-in
  3. RSH (Really Simple History): http://plugins.jquery.com/project/historyevent. For example: http://www.justise.com/2009/01/26/enabling-the-back-button-in-ajax-applications/.
  4. HistoryManager: Mootools Plug-in

Original article posted at: http://interviews.dotnetthread.com/2009/02/enabling-browser-back-button-for.html.

Happy coding with AJAX…..

License

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


Written By
Software Developer (Senior) ValueLabs
India India
http://www.dotnetthread.com

Comments and Discussions

 
Generalthank u Pin
ashsanD6-May-15 21:54
ashsanD6-May-15 21:54 
GeneralDont have any property like GridView1.PageIndex Pin
rvragavan_mca3-Aug-09 21:17
rvragavan_mca3-Aug-09 21:17 

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.