If a user has disabled Javascript in their client browser and they try to use a Form on the Web Page, this causes a Postback. My understanding is that the Form would create a Javascript function __doPostBack to handle the Form submission, but with Javascript disabled a normal Postback occurs. When checking what as been posted back to the server, the Form is empty. Can a Form work with Javascript disabled?
If a user has disabled Javascript in their client browser and they try to
Share
A form ABSOLUTELY works without Javascript.
Just put your form consumption code in the button click event.
something like this perhaps