asp.net:如何在后端找到中继器div?
我使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
HtmlGenericControl 定义所有 HTML 的方法、属性和事件不由特定 .NET Framework 类表示的服务器控制元素。
因此,如果它是服务器控件,您可以简单地使用:
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:
要在后面的代码中查找 DIV,您需要将
runat="server"
标记添加到 DIV。如果您打算这样做,您不妨使用
Panel
,因为它无论如何都会输出 DIV。完成上述操作后,您应该能够像这样找到它:
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: