Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. Web Development
  3. ASP.NET
  4. GridView Sorting

GridView Sorting

Scheduled Pinned Locked Moved ASP.NET
algorithms
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P Offline
    P Offline
    PranavThakur
    wrote on last edited by
    #1

    Hi, I was trying to sort a GridView programitically but my code is throwing an System.StackOverflowException.Please have a look at the code below and reply what wrong I m doing. protected void GridView2_Sorting(object sender, GridViewSortEventArgs e) { GridView2.Sort("CarrierCode", SortDirection.Descending); } CarrierCode is the name of a column above. Thanks.

    J 1 Reply Last reply
    0
    • P PranavThakur

      Hi, I was trying to sort a GridView programitically but my code is throwing an System.StackOverflowException.Please have a look at the code below and reply what wrong I m doing. protected void GridView2_Sorting(object sender, GridViewSortEventArgs e) { GridView2.Sort("CarrierCode", SortDirection.Descending); } CarrierCode is the name of a column above. Thanks.

      J Offline
      J Offline
      Jim Taylor
      wrote on last edited by
      #2

      You are getting a stack overflow operation because this event occurs when the hyperlink to sort a column is clicked, but before the GridView control handles the sort operation. GridView.Sorting Event [^] What is happening is your GridView2_Sorting function is executing which calls the sort method. This in turn will cause your GridView2_Sorting function to handle the sorting event thus getting stuck in a loop until the stack overflow exception is raised. See C# GridView Sorting at http://quickstarts.asp.net/QuickStartv20/aspnet/doc/ctrlref/data/gridview.aspx[^] for help with sorting.

      Jim

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups