asp.net:如何在后端找到中继器div?

发布于 2024-12-01 05:32:32 字数 250 浏览 3 评论 0原文

我使用repeater来显示从数据库获取的记录,特别是我使用div标签来显示存储在数据表中的html内容。但我不知道如何在后端找到div。在 Repeater_ItemDataBound 事件中,我可以用来

Control divControl=e.Item.FindControl("divControl"); 

获取它,但它没有 innerHtml 属性来设置 html 内容。有谁知道如何将其作为 div 控件?

I use repeater to display records fetching from database, especially I use div tag to display html content stored in datatable. But I don't know how to find the div in backend. In Repeater_ItemDataBound event I can use

Control divControl=e.Item.FindControl("divControl"); 

to get it but it does not have innerHtml property to set html content. Does anyone know how to get it as a div control?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

小…红帽 2024-12-08 05:32:32

HtmlGenericControl 定义所有 HTML 的方法、属性和事件不由特定 .NET Framework 类表示的服务器控制元素。

因此,如果它是服务器控件,您可以简单地使用:

HtmlGenericControl divControl = e.Item.FindControl("divControl") as HtmlGenericControl;

HtmlGenericControl defines the methods, properties, and events for all HTML server control elements not represented by a specific .NET Framework class.

So if its a server control you can simply use:

HtmlGenericControl divControl = e.Item.FindControl("divControl") as HtmlGenericControl;
暮年慕年 2024-12-08 05:32:32

要在后面的代码中查找 DIV,您需要将 runat="server" 标记添加到 DIV。

如果您打算这样做,您不妨使用 Panel,因为它无论如何都会输出 DIV。

完成上述操作后,您应该能够像这样找到它:

Panel panel = (Panel)Repeater1.Items[0].FindControl("Panel1");

To find the DIV in the code behind, you'll need to add the runat="server" tag to the DIV.

If you're going to do that, you might as well just use a Panel, as it outputs a DIV anyway.

After doing the above, you should be able to find it like this:

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