If anybody knows otherwise - be sure to let me know:)
Josh
ASP version (just put this in a blank page, upload it & view it through your browser):
<%response.write ScriptEngineMajorVersion & "." & ScriptEngineMinorVersion%>
That will print the major & minor version numbers, the VBScript interpreter sets them as constants on init.
Or if you have actual access to the server, you can use this version as a .html file on your server, open it using the physical path, ie: c:\inetpub\ www. sqlcoders .com \webroot\tests\VBVer.html
<script>
document.write (ScriptEngineMajorVersion & "." & ScriptEngineMinorVersion)
</script>
HTH,
Dw
On my server (win2k w/ASP.net v1) I get 5.1 as the version, but check with the above and be sure.
PS: This probably does not work using ChilliASP on linux, then again i'm biased :)