I'm listing some controls at my web page dynamically, either I'm adding newline with Label's.
Label newLine = new Label();newLine.Text = "<br/>"; myPanel.Controls.Add(newLine);
How can I do it in a different way?
myPanel.Controls.Add(new LiteralControl("<br />"));
1.4m articles
1.4m replys
5 comments
57.0k users