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!
*************************************************
 
Back
Top