2013年1月8日 星期二

後台操作gridview中 hyperlinkfield

參考網址


       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;
                }
            }
        }

沒有留言:

張貼留言