0
Hi,
You can do it in the rowdatabound.
You have to search the link button attribute and the value that has to be into that page.
Label lblSNo = (Label) e.row.FindControl("lblSNo");
LinkButton LnlDetails = (LinkButton) e.row.FindControl("LnlDetails");
LnlDetails.Attributes.Add("OnClick","Window.Open("Details.aspx?SNo="+lblSNo.Text,"")");
Please correct some syntax error.... Hope this will you help...