VBScript

  • Thread starter Thread starter Mat
  • Start date Start date
M

Mat

How can you run this VBscript if your browser does not support VBScript?

If Request.Browser.VBScript = True Then
Response.Write("This browser supports VBScript")
End If
 
You can't. You can still set up VBScript, but it will be ignored by other
browsers, which is a reason, at least potentially, to include it. I would
stick to JavaScript myself.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com

*************************************************
Think outside the box!
*************************************************
 
txs but this is weird

Cowboy (Gregory A. Beamer) said:
You can't. You can still set up VBScript, but it will be ignored by other
browsers, which is a reason, at least potentially, to include it. I would
stick to JavaScript myself.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com

*************************************************
Think outside the box!
*************************************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top