Click to See Complete Forum and Search --> : JS Enabled


MTmace
04-05-2004, 05:25 PM
Is it possible to use ASP to find out if a user has JS enabled or not?

MTmace

PeOfEo
04-05-2004, 05:42 PM
Asp is server side, java script is client side. You are not going to be able to tell if the user has it on or not with asp unless you use a thrid party component, applet, or try to do a little server client communication with js. Buntine can give you more information on all of that fun stuff :p

buntine
04-05-2004, 10:51 PM
You ca use JavaScript to set the boolean value of a hidden form control.Then you will be able to use that value when the form is submitted.

I found this article, also: http://www.4guysfromrolla.com/webtech/082400-1.shtml

Regards,
Andrew Buntine

MTmace
04-06-2004, 06:25 PM
Thanks for the response.
I thought that is how it might be done.

MTmace