protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
var firstCell = e.Row.Cells[0];
firstCell.Controls.Clear();
firstCell.Controls.Add(new HyperLink { NavigateUrl = "ser_job_status1.aspx?Complaint_No = " + firstCell.Text, Text = firstCell.Text, Target = "_blank" });
}
}
}
I have used this to include hyperlink in my gridview.If that link is clicked it may take me to ser_job_status1.aspx where Complaint_No is my table field name. is it correct... If correct how do i get that Complaint_No value in the Label field of my second page.. Kindly help me to figure it out... I use C# in code behind

