Huggy Bear replied to Hozefa Unwala
09-Feb-10 11:42 PM
There are two ways to achieve
1. Send the Unique indexes of the selected gridview rows as comma seperated through the query string. But make sure that in the new page you split the string using Split(',') function and retrieve the data from database based on the indexes.
2. Else make use of Session object. Instead of passing the rows through query string stored them in a session object and access the same session object in the new page.