protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
HyperLink hl = (HyperLink)e.Row.Cells[0].Controls[0];
if (hl.Text.Length > 20)//設定條件
{
hl.Enable=false;
}
}
}
沒有留言:
張貼留言