gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 11:43:23 25 4
gpt4 key购买 nike

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

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

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

最佳答案

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

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

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

关于asp.net:如何在后端找到中继器 div?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7178187/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com