Javascript check?

  • Thread starter Thread starter Paul M
  • Start date Start date
P

Paul M

Hi
Is there anyway using asp to check that a browser has javascript enabled and
if not redirect them to another page.
I have read that it is best done server side but I can't find how.

Thanks
Paul M
 
Paul M said:
Hi
Is there anyway using asp to check that a browser has javascript enabled
and if not redirect them to another page.
I have read that it is best done server side but I can't find how.

Add this into the HTML
<noscript>
Whatever HTML code you like in here
A redirect would probably need to call JavaScript

</noscript>
 
Thanks Trevor
Paul M

Trevor Lawrence said:
Add this into the HTML
<noscript>
Whatever HTML code you like in here
A redirect would probably need to call JavaScript

</noscript>
 
Back
Top