[thelist] .Net generated HTML not validating - help?

Ken Schaefer Ken at adOpenStatic.com
Wed Oct 5 16:35:27 CDT 2005


> -----Original Message-----
> From: thelist-bounces at lists.evolt.org [mailto:thelist-
> bounces at lists.evolt.org] On Behalf Of Joshua Olson
> Subject: RE: [thelist] .Net generated HTML not validating - help?
> 
> > -----Original Message-----
> > From: Ken Schaefer
> > Sent: Wednesday, October 05, 2005 4:53 PM
> >
> > These issues (non-validating code) will be fixed in .NET v2
> > which being RTM on November 7th.
> 
> Ken,
> 
> I'm not trying to troll, but one thing has bugged me about ASP.NET since
> day
> 1.  Not being a .NET guru, I don't know the answer so this is a real
> question:
> 
> Is there a way to remove .NET reliance on JS while still taking advantage
> of SessionState?


Session state has nothing to do with the ASP.NET client-side library.
SessionState is maintained via cookies (in a default configuration). There's
no javascript involvement.



> As it stands now, every .NET site I inherit is given to the
> browser with links calling JS to post forms and whatnot.  With JS disabled
> the sites break completely.  Is there a way to have it produce sites with
> no extraneous JS?

I'm not a guru either. You can certainly write stuff that doesn't rely on the
client-side javascript (i.e. avoiding the postbacks) if you're just doing
something simple (and avoid using the BCL web controls), but if you are using
web controls, then you'll probably need to wire up everything yourself.

Cheers
Ken


More information about the thelist mailing list