ascx file outputs unformatted html - need pretty output

  • Thread starter Thread starter n_o_s_p_a__m
  • Start date Start date
N

n_o_s_p_a__m

The html generated by my ascx control is a big blob. Is there any way
to make it output using outlined tabs like regualar aspx pages do?

My friends at microsoft.public.dotnet.framework.aspnet ignored this
post previoiusly.
 
It should follow the formatting in your ascx file. It does in mind. Not as
pretty as the rest of the page, as I have not added enough indents to make
it match the page that it is embedded in, but the formatting is not a blob.
If you are outputting everything (or large portions) from the CodeBehind,
you will have some work, as you will have to include the returns with \n\r
(C#). You can make up strings of characters for tabs, et al, if you are
working with VB.NET. It is your job, however, if you are outputting from the
CodeBehind.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

**********************************************************************
Think Outside the Box!
**********************************************************************
 
Back
Top