将图像按钮添加到 gridview 行

发布于 2024-11-27 10:04:13 字数 514 浏览 1 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文