将数据加载到Dev Gridview
后,我添加了Delete Button
:
public void loadgrid()
{
....
gv.DataBind();
GridViewCommandColumn d = new GridViewCommandColumn();
d.DeleteButton.Text = Delete;
d.DeleteButton.Visible = true;
d.Caption = " ";
gv.Columns.Add(d);
}
但是Column of Delete Button
不在最后一个gridview中(它位于last
数据列的左侧)。
我真的不知道为什么,我只是想当我添加时,command column
会自动添加到最后。我错了???
帮助!