目前主要記錄程式方面快速達成某功能的程式碼片段
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; } } }
沒有留言:
張貼留言