将标签添加到 DataGrid 的 TemplateField 项模板。但不是前端
C#,.net
原始代码:
<asp:TemplateField ItemStyle-Width="20px" ItemStyle-HorizontalAlign="Center">
<itemtemplate>
<asp:Label ID="lblDependency" Runat="server"></asp:Label>
</itemtemplate>
</asp:TemplateField>
我想做这样的事情:
BoundField bf = new BoundField();
bf.DataField = "b";
grvList.Columns.Add(bf);
但不是使用boundfield,而是使用templatefield。
如果您想知道我为什么要做这样的事情,它与: 这个
C#, .net
Original Code:
<asp:TemplateField ItemStyle-Width="20px" ItemStyle-HorizontalAlign="Center">
<itemtemplate>
<asp:Label ID="lblDependency" Runat="server"></asp:Label>
</itemtemplate>
</asp:TemplateField>
I'd like to do something like this:
BoundField bf = new BoundField();
bf.DataField = "b";
grvList.Columns.Add(bf);
but instead of boundfield, using templatefield.
If you would like to know why am I doing something like this, it has to do with: this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://msdn.microsoft.com/en-us/library/Aa289501我相信涵盖了这一点(向下滚动到底部查看 DataGrid 完整示例)。基本上你不能让它直接解析 ASP 标签,你必须创建一个以编程方式实现它们的自定义类,然后实例化该类。
http://msdn.microsoft.com/en-us/library/Aa289501 Covers this I believe (scroll down to the bottom for a DataGrid complete example). Basically you cannot have it parse ASP tags directly, you have to create a custom class that implements them programmatically, then instantiate that class.