Panels, innerHTML, white-space

T

TR

I am adding a Panel to my page at runtime so:

'//note that P is another container Panel

Dim MyPanel As New System.Web.UI.WebControls.Panel
MyPanel.CssClass = "MYPANEL"
MyPanel.ID = "p100"
P.Controls.Add(MyPanel)


This is emitted as the following HTML (note the white space):

<div id="p100" class="MYPANEL">

</div>


Is there any way to get ASP.NET to emit this without white space?

<div id="p100" class="MYPANEL"></div>

Thanks!
TR
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,578
Members
45,052
Latest member
LucyCarper

Latest Threads

Top