If JavaScript is disabled, an ASP.Net application is highly likely to
misbehave in many ways. While it is possible for you to write an ASP.Net
application that doesn't use it, it is not a picnic. For one thing, you
would need to disable ViewState. Many Controls indeed use JavaScript to do
PostBacks. But it is possible. Still, there are very few browsers out there
with JavaScript turned off, and anyone who turns it off completely is
probably too ignorant to care about.

Signature
HTH,
Kevin Spencer
Chicken Salad Surgeon
Microsoft MVP
> Hi all,
>
[quoted text clipped - 17 lines]
>
> thanks in advance.
Mark Rae [MVP] - 10 Dec 2007 12:37 GMT
> anyone who turns it off completely is probably too ignorant to care about.
Hear! Hear!
I always include some instructions on the home page which advise people how
to turn JavaScript back on, which anyone can use - disable JavaScript and
then go to the website in my sig...

Signature
Mark Rae
ASP.NET MVP
http://www.markrae.net
bruce barker - 10 Dec 2007 16:31 GMT
there is no need to disable viewstate. if you want your site to run
without javascript, then use only submit and image buttons. link buttons
(and thus paging on grids) will not work. autopostback will not work,
but shouldn't be used on an internet site anyway (poor user experience).
instead of javascript menus and flyouts, use the css versions (google
for examples, .net has no builtin ones)
-- bruce (sqlwork.com)
> If JavaScript is disabled, an ASP.Net application is highly likely to
> misbehave in many ways. While it is possible for you to write an ASP.Net
[quoted text clipped - 3 lines]
> with JavaScript turned off, and anyone who turns it off completely is
> probably too ignorant to care about.