1
我想動態地添加一個html到服務器控件,然後我想從這個html訪問每個控件。如果我使用的控件的內部HTML屬性我可以看到的HTML加入作爲literalControl,我想這是一個HTML控件與其他一些HTML控件動態添加html到面板並訪問htmlcontrols
例如:
//aspx file
<div id="content" runat="server"><div>
//aspx.cs file
protected void Page_Load(object sender, EventArgs e)
{
content.AddControlsFromHtml("<input type='text' id='textBox' />")
}
//get the control
((HtmlInputText)content.FindControl("textBox")).Value = "hello"
這是可能?
我需要這個行爲到網頁