I know that I can get OS and\or browser settings types from the IIS logs, but is there a way to also see if a user has JavaScript disabled? I am looking for a to determine how many of our users are not running JavaScript.
Thanks, ZK
I know that I can get OS and\or browser settings types from the IIS logs, but is there a way to also see if a user has JavaScript disabled? I am looking for a to determine how many of our users are not running JavaScript.
Thanks, ZK
The IIS logs won't keep that information, but you can use a solution like Google Analytics which is able to obtain that information and more. It's free and great for finding out client-side information like that.
A half useful method would be to write two cookies, one in a page header and another with Javascript, if they both are sent back to the server then JS is enabled, if neither exists then cookies are disabled.
I'm guessing that IIS is like Apache in as much that it can log cookies.
As this was a secured site and also had a limited number of users, I ended up just saving this info in a user table on the data base.
I set a variable "JSEnabled" to false, and using JavaScript set it to true on log in.