protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowIndex > -1)
{
LinkButton link = e.Row.FindControl("LinkButton1") as LinkButton;
DataRowView row = e.Row.DataItem as DataRowView;
link.Text = string.Concat(row["[CustID]"].ToString(), " ", row["CustName"].ToString());
}
}