Is there a way to use ASP.NET in browsers that javascript is not enabled?
Whereas all buttons/actions do a postback using javascript by default, i guess that isn’t possible, but using ASP.NET MVC could be a solution?
What do you think is the best way to deal if the user’s browser is with javascript disabled? Block the page access telling that the user need enabled?
So, is this really necessary?
A lot of large sites do nothing to handle that.
A lot of large sites are rubbish created by incompetents.
Apply the techniques of Progressive Enhancement: create a functional application or site that works without scripting, even though it may be clunky and long-winded to navigate. Then use scripting to enhance that basic version by adding the stuff that makes it slick and easy to use.
Try going to something like Google Maps with JS disabled; you still get a basic site you can use to search and view static map images. That’s the professional approach.