void GridView1_RowCreated(Object sender,GridViewRowEventArgs e) {
if (e.Row.RowType == DataControlRowType.DataRow)
{
(e.Row.FindControl("linkDocs") as HyperLink).Visible = false;
}
}
我无法使代码示例生效。 我需要在我的页面上访问超链接控件。
我有一个母版页设置。
答案 0 :(得分:1)
确保您使用的是包含ID =“linkDocs”的超链接的TemplateField。
也许OnRowDataBound事件更适合您的需求。