GridView_Sorting() Event fires twice?

W

Whitney Yiu

I have a gridview object, and i have bound it to data. I created a sort
method, and have set it so that when the gridview heading is clicked on, it
should sort the gridview (the [gridview]_sorting() method fires when a
heading is called, and then my sort method is called within there).

My sorting works, and it is set to sort both asc or desc. But right now i am
only getting desc. sorts because the gridview_sorting() method fires twice
(one right after another) and i have no clue why.

can anyone help me out, and explain what's going on here?

any help is appreciated, thanks!

--whit
 
B

Bruno Alexandre

maybe because in Page_Load you bind your data... right?

inside Page_Load you need to bind your data only is the page is not a
postBack

if not Page.IsPostBack then
add here the code to bind the data into the grid
end if
 
A

alex

I'm having the same issue.
I'm not bind the data at page_load.
i'm calling the databind from the sort method when it fires.
Did you find out what the issue was?
Thanks
Alex
I have a gridview object, and i have bound it to data. I created a sort
method, and have set it so that when the gridview heading is clicked on, it
should sort the gridview (the [gridview]_sorting() method fires when a
heading is called, and then my sort method is called within there).

My sorting works, and it is set to sort both asc or desc. But right now i am
only getting desc. sorts because the gridview_sorting() method fires twice
(one right after another) and i have no clue why.

can anyone help me out, and explain what's going on here?

any help is appreciated, thanks!

--whit


___
Newsgroups brought to you courtesy of www.dotnetjohn.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,065
Latest member
OrderGreenAcreCBD

Latest Threads

Top