The Label control in ASP.NET seems to render <span> tags, but is there a server control to render HTML within a <div>?

Sure, I could set display: block and it might look the same, but I'd rather not be nesting divs inside spans. Also I'd prefer not to use <%= MyVariable %> because that might not behave nicely on postbacks.

Any suggestions, please?

link|improve this question

you can use div is possible – Anand Thangappan Apr 15 '11 at 10:21
feedback

3 Answers

up vote 2 down vote accepted

I think you need HtmlGenericControl class. It has a constructor which accepts a string variable which initializes a new instance of the HtmlGenericControl class with the specified tag:

var div = new HtmlGenericControl("div");

It is also has InnerHtml and InnerText properties (you mentioned this in a comment to the previous answer).

link|improve this answer
Thanks. Could I put this directly in the page markup, or does it have to be added to a Panel? – James Apr 15 '11 at 10:21
You could use it in markup like: <div runat="server" id="myPerfectDiv">my inner text here</div> – Alex Apr 15 '11 at 10:23
Cool. What's the difference between the InnerText and InnerHtml properties? Should I just use InnerHtml? – James Apr 15 '11 at 10:25
1  
InnerText property provides automatic HTML encoding/decoding. See: e.g., if the InnerText property is set to <b> Hello </b>, the < and > symbols are converted to &lt; and &gt;, respectively. Fot the InnerHtml property the rendered output would be: <b> Hello </b>. – Alex Apr 15 '11 at 10:28
feedback

Of course: ASP.NET has a built-in control called Panel!

link|improve this answer
I feel a bit stupid here, but the Panel hasn't got a Text/InnerHtml property. How can I write directly into it, like with a Label? – James Apr 15 '11 at 10:02
You add Controls to it - it's a container. E.g. myPanel.Controls.Add(new LiteralControl("Hello World")); – Widor Apr 15 '11 at 10:04
@James Widor has answered your second question! :) – Matías Fidemraizer Apr 15 '11 at 10:09
@Widor Thanks. Could I put the asp:Literal control directly onto the page, or has that got disadvantages? – James Apr 15 '11 at 10:16
Yes, you can add the Literal control (or any others) in the markup if you like and just assign to its Text property if you want it to update dynamically at runtime. – Widor Apr 15 '11 at 10:23
feedback

Try the Panel control.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.