Click here to Skip to main content
15,886,664 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
Hi friends,

I have a situation where I need to find out the status of JavaScript of Client's browser. I have tried :
C#
System.Web.HttpBrowserCapabilities browser = Request.Browser;
                strBrowser = browser.Browser;
                browserVersion = browser.Version;
                isJsEnabled = browser.JavaScript;

But above code returns the capability status of browser.

I could not find out how can I use NoScript Tag to solve it.

Any ideas.

Thanks
AD
Posted
Updated 14-Nov-11 3:21am
v2

1 solution

 
Share this answer
 
Comments
Ashish Dev1 16-Nov-11 0:23am    
Well it's a nice example. This example basically rely on QueryString that is appended to the page URL. I hope there could be any other way to find out the JavaScript's Enabled or Disabled status. but for this time my problem has overcome.

once again thanks to "Sandeep1003"

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900