Is there a way in asp to check if a client has javascript disabled?
I know that the object MSWC.BrowserType retrieves a bool value that determine if browser client supports Javascript but not if is disabled
Thanks in advance.
Printable View
Is there a way in asp to check if a client has javascript disabled?
I know that the object MSWC.BrowserType retrieves a bool value that determine if browser client supports Javascript but not if is disabled
Thanks in advance.
There is no way to directly detect JavaScript without using <noscript> tags. Also, remember that ASP is a server-side language. It cannot grab information from the client unless the client sends it through GET or POST.
So, in your case, the answer is no.