Scans your site and returns information about your SSL implementation and certificate. Helpful for debugging and validating your SSL configuration.
One of a set of tools we are providing to everyone as a way of saying thank you for being a part of the community.
<asp:GridView ID="GridView1" runat="server"
.. OnRowDataBound="GridView1_
Now, in code behind,you can write
protected void GridView1_RowDataBound(obj
System.Web.UI.WebControls.
{
if ((e.Row.RowType == DataControlRowType.DataRow
{
LinkButton selectButton = (LinkButton)e.Row.FindCont
if (selectButton != null) // YOUR Logic to display
selectButton.Visible = false;
}
}
For More but brief knowledge you can refer below quick link
http://forums.asp.net/t/1449959.aspx/1
Hope this would help you to resolve your problem.