|
怎樣對GridView內的新增、修改、刪除按鈕做管控? |
|
|
提供兩種方法供參考: 1.使用WebSecurity元件,直接對WebDataSource進行權限控制,進而達到對各輸入元件的控制。 2. 自己寫程式實現。 如在GridViewRowDataBound事件中,您可以通過如下程式設定是否顯示相應的button. if (e.Row.RowType == DataControlRowType.DataRow) { if (不能編輯) // 設定當什麼條件下, 要隱藏Button { (e.Row.Cells[0].FindControl("ImageButton1") as ImageButton).Visible = false; } }
|
|
|