CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2003
    Posts
    72

    Javascript Disabled

    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.

  2. #2
    Join Date
    May 2002
    Posts
    10,943

    Re: Javascript Disabled

    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.
    If the post was helpful...Rate it! Remember to use [code] or [php] tags.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured