我正在使用VB语言编写asp.net webform。在我的webform中,我创建了一个用户控件,该控件应列出从SQL Server数据库中读取的数据。
在用户控件中,我想创建一个从数据库读取的脚本,对于每个读取它的记录,它应该在脚本旁边动态地添加控件(如:<li>, <span>, <div>,<h5>...
),但是在用户控件页面内,以便列在主/主页中。
答案 0 :(得分:-1)
yourPanel.Controls.Add(new LiteralControl("<li>")) //opening tags
Label lbl = new Label()
lbl.Text = value_from_database;
yourPanel.Controls.Add(new LiteralControl("</li>")) //closing tags
希望它有所帮助。当然,如果你提到这个