将标签添加到 DataGrid 的 TemplateField 项模板。但不是前端

发布于 2024-10-04 12:17:46 字数 613 浏览 1 评论 0原文

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

走走停停 2024-10-11 12:17:46

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文