作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个div
<div id="PageContent" runat="server"></div>
现在我像这样从代码隐藏(c#)向它添加 HTML
PageContent.InnerHtml =mytext;
其中 mytext
是我想在 PageContent
div 中添加的内容,mytext 包含一些文本之间的跨度(它可以是任何字符串),像这样
This is some <span id="span1"> </span> text
如何从代码隐藏中找到 span 并向其添加用户控件?
最佳答案
//This is some <span id="span1" runat="server"> </span>
//In the code behind...
var span1 = this.FindControl("span1") as HtmlGenericControl;
var controlPath = "path of your user control";
var someControl = LoadControl(controlPath);
span1.Controls.Add(someControl);
关于c# - 如何从代码隐藏中找到跨度并向其添加用户控件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19377391/
我是一名优秀的程序员,十分优秀!