我有一个div
<div id="PageContent" runat="server"></div>
现在,我像这样从后面的代码(C#)向其中添加HTML
PageContent.InnerHtml =mytext;
其中
mytext
是我要在PageContent
div中添加的内容,mytext在某些文本(可以是任何字符串)之间包含一个跨度,类似这样This is some <span id="span1"> </span> text
如何从代码后面找到跨度并向其中添加用户控件?
最佳答案
//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/