在Gridview RowDataBound
我根据其值禁用超链接。但是超链接文本是灰色的。
我想更改禁用超链接的前景色,以便我可以轻松阅读文本。
我尝试如下所述。
protected void gridResult_RowDataBound(object sender, GridViewRowEventArgs e)
{
var hyperlink = e.Row.FindControl( "hlink" ) as HyperLink;
if( hyperlink!= null && hyperlink.Text =="ABC" )
{
hyperlink.ForeColor = Color.Black;
hyperlink.Enabled = false;
}
}