Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<asp:GridView ID="GridView1" runat="server" OnRowDataBound="GridView1_RowDataBound">
</asp:GridView>
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());
}
}