R
Ricardo Quintanilla G.
how to override the rendering method of a whole asp.net applicaction? i want
to not include spaces between html elements.
As example, then rendering produce that:
== == == ==
<html>
<body>
<p>Welcome</p>
<p>to my app</p>
</body>
</html>
== == == ==
and i would like then rendering would by:
== == == ==
<html><body><p>Welcome</p><p>to my app</p></body></html>
== == == ==
do you see?
no spaces between html elements
to not include spaces between html elements.
As example, then rendering produce that:
== == == ==
<html>
<body>
<p>Welcome</p>
<p>to my app</p>
</body>
</html>
== == == ==
and i would like then rendering would by:
== == == ==
<html><body><p>Welcome</p><p>to my app</p></body></html>
== == == ==
do you see?
no spaces between html elements