我可以在加载事件时从 C# 动态添加 HTML 到 div 标签中吗?
请注意,我正在使用母版页,但是我可以在页面中找到一个 div 并在其中添加一些 html 吗? 谢谢。
Mind you, I am using master pages, but can I locate a div within the page and throw some html in there? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以将 runat="server" 的 div 添加到页面:
然后从代码隐藏中设置其 InnerHtml 属性:
如果您想在客户端修改 DIV 的内容,那么您可以使用类似于以下的 javascript 代码:
You can add a div with runat="server" to the page:
and then set its InnerHtml property from the code-behind:
If you want to modify the DIV's contents on the client side, then you can use javascript code similar to this:
为此,请使用
asp:Panel
。 它翻译成一个div。Use
asp:Panel
for that. It translates into a div.请记住使用
将替换 myDIV 中的所有 HTML 元素。 您需要附加文本以避免这种情况。这可能对
myDiv 中的任何 html 控件有帮助,但对 ASP html 控件没有帮助(因为它们尚未呈现)。
Remember using
will replace all HTML elements in myDIV. you need to append text to avoid that.In that this may help
any html control in myDiv but not ASP html controls(as they are not rendered yet).
您可以通过这种方式引用母版页内的控件:
在此示例中,您必须将 Literal 控件放入 ContentPlaceholder 中。
You could reference controls inside the master page this way:
In this example you have to put a Literal control in your ContentPlaceholder.
您想将代码放在母版页代码后面,将 HTML 插入到使用该母版页的页面内容中吗?
我不会通过 FindControl 搜索控件,因为这是一个脆弱的解决方案,如果控件的名称发生更改,很容易被破坏。
最好的办法是在母版页中声明一个任何子页面都可以处理的事件。 该事件可以将 HTML 作为 EventArg 传递。
You want to put code in the master page code behind that inserts HTML into the contents of a page that is using that master page?
I would not search for the control via FindControl as this is a fragile solution that could easily be broken if the name of the control changed.
Your best bet is to declare an event in the master page that any child page could handle. The event could pass the HTML as an EventArg.