将图像按钮添加到 gridview 行
我使用 datarow 在 gridview 的列下方添加了一行。我现在想将图像按钮添加到该行中以支持列排序。
我的问题:如何将图像按钮添加到 gridview 的第一行?
下面的代码显示了如何添加新行。
DataRow drSampleRow= null;
drSampleRow= dtSampleDataTable.NewRow();
drSampleRow["Col1"] = string.Empty;
drSampleRow["Col2"] = ResolveUrl("~/plus.gif"); //this doesn't works!
drSampleRow["Col3"] = string.Empty;
drSampleRow["Col4"] = string.Empty;
drSampleRow["Col5"] = string.Empty;
dtSampleDataTable.Rows.Add(drSampleRow);
请指导我!谢谢!
I have added a row in gridview below the columns using datarow. I now wanted to add image button into that row that would support sorting of the columns.
My Question: How to add image buttons into the first row of the gridview?
Below code shows how a new row is added.
DataRow drSampleRow= null;
drSampleRow= dtSampleDataTable.NewRow();
drSampleRow["Col1"] = string.Empty;
drSampleRow["Col2"] = ResolveUrl("~/plus.gif"); //this doesn't works!
drSampleRow["Col3"] = string.Empty;
drSampleRow["Col4"] = string.Empty;
drSampleRow["Col5"] = string.Empty;
dtSampleDataTable.Rows.Add(drSampleRow);
Please guide me! Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论