Hi Karan Gupta,
add a rowdatabound event for the gridview like
protected void GridView1_RowDataBound(obj
ect sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow
)
{
LinkButton obj = (LinkButton)e.Row.FindCont
rol("LinkB
utton1");
obj.PostBackUrl = "~/default.aspx?Applicatio
nID="+obj.
Text;
}
}
the Linkbutton in the gridView will look like