Label newLine = new Label();newLine.Text = "<br/>"; myPanel.Controls.Add(newLine);
我如何以不同的方式做呢?
myPanel.Controls.Add(new LiteralControl("<br />"));