Suppose I have two Gridviews ,But while I am selecting the First Gridview then only display the second gridview . How can I ?
Mahesh 0
Select an image from your device to upload
Firstly , we have to write this in the Default.aspx file
<
After that we have to write this code in .aspx.cs file of GridView1_SelectedIndexChanged
{
string
InsHdrID = GridView1.DataKeys[r.RowIndex].Value.ToString();
PopulateInspectionDetails(InsHdrID);
}
So,we have to this into .aspx file
<ItemTemplate>