GridView
我已经从代码隐藏在我的 .aspx中动态创建。我在其中插入了一个 sql 表GridView
。然后我又添加了一个按钮栏。这是代码:
ButtonField bf = new ButtonField();
bf.Text = "Details";
bf.ButtonType = ButtonType.Button;
DataTable table = new DataTable();
table.Load(reader);
GridView gv = new GridView();
gv.Columns.Add(bf);
gv.DataSource = table;
gv.DataBind();
现在我想MouseClickEvent
在这个 ButtonField 上添加一个,但是没有属性Click
or MouseClick
。有没有办法做到这一点?