Hi,
I am creating a ASP.NET web application using c#. I want to use a grid view to select a particular data from the sql server database table and display the remaining data for eg
table
emp no Name Age Salary
1 xxxx 20 20000
2 yyyy 21 30000
3 zzzz 22 40000
in the initial web page only the emp no will be visible. if i select 1 n click submit button it should go to another web page and show the all the data of that record.
I am creating a ASP.NET web application using c#. I want to use a grid view to select a particular data from the sql server database table and display the remaining data for eg
table
emp no Name Age Salary
1 xxxx 20 20000
2 yyyy 21 30000
3 zzzz 22 40000
in the initial web page only the emp no will be visible. if i select 1 n click submit button it should go to another web page and show the all the data of that record.