Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个具有 2 个标签和 1 个名为 divInfo 的下拉列表的 div。
现在我想使用后面的代码从这个 divInfo 创建多个 div。
我尝试通过在循环中动态创建一个 div 来做到这一点,例如。divDynamic,然后由 divInfo 分配。
divDynamic = divInfo
但它不会仅用于渲染和显示一个 div。
您可以通过获取 div 的 html 并将其分配给文字控件来执行此操作
//create a literal to hold the div content var sb = new StringBuilder(); //get all the contents of div divInfo.RenderControl(new HtmlTextWriter(new StringWriter(sb))); Literal ldiv = new Literal(); ldiv.Text = sb.ToString();