Javascript check?

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
 
T

Trevor Lawrence

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>
 
P

Paul M

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>
 
Top