在 Asp Datagrid 中查看图片的 Itemtemplate(代码)
我正在为共享点编写一个 Web 部件,因此我必须生成一个有问题的数据网格。
情况是我得到一个数据视图,生成网格并绑定数据。 一列应显示图像,因此我必须使用项目模板生成一个模板列。
所以代码如下所示:
//Instantiate the DataGrid, and set the DataSource
_grdResults = new DataGrid();
_grdResults.AutoGenerateColumns = false;
_grdResults.DataSource = view;
TemplateColumn colPic = new TemplateColumn();
colPic.HeaderText = "Image";
我找到了几十个用于创建项目模板的 asp 示例,但是如何在代码中构造一个示例并将其 ImageUrl 绑定到 Dataview 的“imgURL”?
感谢任何建议
任
I´m writing on a webpart for sharepoint, so I have to generate a Datagrid problematically.
The Situation is that I get a Dataview, generate the Gris and bind the Data.
One column should show a Image, so I have to generate a template column with item template.
So code looks like this:
//Instantiate the DataGrid, and set the DataSource
_grdResults = new DataGrid();
_grdResults.AutoGenerateColumns = false;
_grdResults.DataSource = view;
TemplateColumn colPic = new TemplateColumn();
colPic.HeaderText = "Image";
I found dozens of example for asp to create the item-template, but how construct one in code and bind it´s ImageUrl to "imgURL" of the Dataview?
thanks for any advice
Ren
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要创建一个实现该 ITemplate 接口的类。
然后将 ItemTemplate 设置为此类的实例。
You need to create a class that implements that ITemplate interface.
You then set your ItemTemplate to an instance of this class.