I want to show the gridview depend on the number of value from another web form.
For example,
In Webform1.aspx, if the value is 1 and click "View" and then new window pop-up in Webform2.aspx and show the gridview of value 1 only.
The value is varied and dynamic data of integer.
Thanks a lot for viewing my question and give me the correct answer.

Rajeesh MenothPosted Jun 29, 2015, 12:01 AM
Manoj Kumar MandalPosted Jun 28, 2015, 11:57 PM
Narasimha Reddy ChennupalliPosted Jun 26, 2015, 11:17 AM
Whenever you click on particular link send Id/any unique parameter as query string in the Url.
Ex:- http://localhost:8080/Webform2.aspx?Id=101
Based upon query string value populate the data/display the data in Webform2.aspx page.
Please let me know if my understanding is not correct.
I hope it will help you.