我有一个gridview(GridviewProduct),其中我有一个模板字段列链接按钮作为从购物车中删除,旁边的另一个模板字段列作为数量,其他三个字段是boundField,如ProductName、ProductPrice和ProductBrand。如下所示:
我想将数量列移动到右侧网格视图的末尾。当我使用此代码时,它给了我一个错误:
插入索引超出范围
var Quantity = GridViewProduct.Columns[1];
GridViewProduct.Columns.RemoveAt(1);
GridViewProduct.Columns.Insert(5, Quantity);
请帮忙。