I want to add HTML structure and control like this from code behind into a panel
First Name 5条回答 一整个雨季 (楼主) 2020-12-17 09:46 For appending HTML to your panel, add a LiteralControl control to your panel: string yourHTMLstring = "...."; pnlUserdata.Controls.Add(new LiteralControl(yourHTMLstring)); 0 讨论(0) 查看其它5个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
For appending HTML to your panel, add a LiteralControl control to your panel:
LiteralControl
string yourHTMLstring = "...."; pnlUserdata.Controls.Add(new LiteralControl(yourHTMLstring)); 0 讨论(0) 查看其它5个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复