ASP.NET control to render a

Of course: ASP.NET has a built-in control called Panel! And you may use it as follows: <asp:Panel ID=”myPanel” runat=”server”> <!– Other markup here like client and server controls/elements –> </asp:Panel> It’s a container, so you add Controls to it in the code-behind like: myPanel.Controls.Add(new LiteralControl(“Hello World”)); You can add the Literal control (or any others) … Read more