Click here to Skip to main content
15,908,674 members
Home / Discussions / Web Development
   

Web Development

 
GeneralFile restrictions Pin
alex.barylski7-Apr-02 7:22
alex.barylski7-Apr-02 7:22 
GeneralRe: File restrictions Pin
David Wengier7-Apr-02 8:16
David Wengier7-Apr-02 8:16 
Generalclient webform handling Pin
cipx7-Apr-02 4:24
cipx7-Apr-02 4:24 
Generalhtml or javascript question Pin
Mazdak7-Apr-02 1:16
Mazdak7-Apr-02 1:16 
GeneralRe: html or javascript question Pin
Philip Patrick7-Apr-02 18:42
professionalPhilip Patrick7-Apr-02 18:42 
GeneralRe: html or javascript question Pin
Mazdak7-Apr-02 18:52
Mazdak7-Apr-02 18:52 
GeneralRe: html or javascript question Pin
Philip Patrick8-Apr-02 9:46
professionalPhilip Patrick8-Apr-02 9:46 
GeneralA rant about ASP.NET controls Pin
Chris Maunder6-Apr-02 23:17
cofounderChris Maunder6-Apr-02 23:17 
One thing that often frustrates me about Word is the brain-dead way it creates HTML from a word doc. Instead of a simple set of <p>'s, it creates <p align="left">, or <p class="MSOMonstrosity"> or, more often <span areallyhugelonglistofclassattributes>. Clean out all this crap and it displays exactly the same.

So - I'm now moving pages that have been handcoded with complicated stuff like:

<table cellSpacing=0 cellPadding=1 border=0 width="100%">

to be more ASP.NET friendly, so it becomes:

<asp:Table BorderWidth=0 CellPadding=1 CellSpacing=0 Width="100%">

Personally I love the new format. What really drives me nuts is when the output is straight out of the Word Bible of rendering HTML:

<TABLE id=SearchNavBar_tblSiteToolbar
style="BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; WIDTH: 100%; BORDER-COLLAPSE: collapse; BORDER-RIGHT-WIDTH: 0px"
cellSpacing=0 cellPadding=1 border=0>

I've been looking through some of the pages I use - many of which are table intensive, and pages (which are already fairly large) are now threatening to become 50% bigger simply because the HTML renderer for the WebControls isn't smart enough to leave out superfluous styles.

Please someone tell me I'm missing something obvious here and that there is a way to keep WebControls lean and mean.

cheers,
Chris Maunder
GeneralRe: A rant about ASP.NET controls Pin
Nish Nishant7-Apr-02 1:18
sitebuilderNish Nishant7-Apr-02 1:18 
GeneralRe: A rant about ASP.NET controls Pin
Chris Maunder7-Apr-02 2:27
cofounderChris Maunder7-Apr-02 2:27 
GeneralRe: A rant about ASP.NET controls Pin
Daniel Turini7-Apr-02 3:01
Daniel Turini7-Apr-02 3:01 
GeneralRe: A rant about ASP.NET controls Pin
Chris Maunder7-Apr-02 3:15
cofounderChris Maunder7-Apr-02 3:15 
GeneralRe: A rant about ASP.NET controls Pin
David Stone8-Apr-02 9:08
sitebuilderDavid Stone8-Apr-02 9:08 
GeneralNeed help using Visual Studio.Net! Pin
dardanius6-Apr-02 4:50
dardanius6-Apr-02 4:50 
GeneralTimer question Pin
alex.barylski5-Apr-02 18:39
alex.barylski5-Apr-02 18:39 
GeneralRe: Timer question Pin
alex.barylski6-Apr-02 0:36
alex.barylski6-Apr-02 0:36 
GeneralRe: Timer question Pin
James T. Johnson6-Apr-02 2:00
James T. Johnson6-Apr-02 2:00 
GeneralRe: Timer question Pin
alex.barylski6-Apr-02 2:11
alex.barylski6-Apr-02 2:11 
GeneralRe: Timer question Pin
James T. Johnson6-Apr-02 2:11
James T. Johnson6-Apr-02 2:11 
GeneralRe: Timer question Pin
alex.barylski6-Apr-02 2:38
alex.barylski6-Apr-02 2:38 
GeneralgetElementById trick question. Pin
alex.barylski5-Apr-02 14:40
alex.barylski5-Apr-02 14:40 
GeneralRe: getElementById trick question. Pin
Andy Smith5-Apr-02 14:51
Andy Smith5-Apr-02 14:51 
GeneralRe: getElementById trick question. Pin
alex.barylski5-Apr-02 15:45
alex.barylski5-Apr-02 15:45 
GeneralRe: getElementById trick question. Pin
alex.barylski5-Apr-02 15:48
alex.barylski5-Apr-02 15:48 
GeneralVisual Studio .NET and ASP.NET question Pin
leydel5-Apr-02 11:33
leydel5-Apr-02 11:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.