Click here to Skip to main content
15,892,575 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi All,

I am using drop down lists in Grid view.

I selected DropDownValues in GridViewControl.

Here i am not using "grid view paging" .

I am using my "own pagination" .

When i do pagination i need alert message(would you like to reset dropdown values) with "OK" and "CANCEL" buttons.

If we click on "OK" go to next page and if we click on "CANCEL" button it should be in samepage only.

Here main problem is whenever "dropdown" changing total entire page is reloading.

So, could you please help me in coding..

It would be great if u can help me out in this regard.

Thank you so much in advance.
Posted
Updated 2-Jan-11 19:56pm
v2

It is difficult to help you out until you post some code here.
However, what you kind of need to implement is
if (MessageBox.Show("...") == MessageBoxResult.Ok)
{
CallMyPaginationMethod();
}
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900