WANTS TO MAKE SOFTWARE WITHOUT KNOWLEDGE OF ASP? CLICK HERE
The ScriptEngineBuildVersion function returns the build version number
of the scripting engine in use. The return value corresponds directly
to the version information contained in the DLL for the scripting language
in use.
The Syntax of the ScriptEngineBuildVersion function is :-
ScriptEngineBuildVersion( )
|
Its Description is :-
String |
Description |
JavaScript |
Indicates that JavaScript is the current scripting engine. |
VBA |
Indicates that Visual Basic for Applications is the
current scripting engine. |
VBScript |
Indicates that Visual Basic Scripting Edition is the
current scripting engine. |
Example#1 :-
Code :-
document.write(ScriptEngineBuildVersion & "<br />")
Output :-
6330 |
Example#2 :-
Code :-
function GetScriptEngineInfo()
{ var s;
s = ""; // Build string with necessary info.
s += ScriptEngine() + " Version ";
s += ScriptEngineMajorVersion() + ".";
s += ScriptEngineMinorVersion() + ".";
s += ScriptEngineBuildVersion();
Output :-
return(s); |
Example#3 :-
Code :-
<%
=ScriptEngineBuildVersion
%>
Output :-
2926
|
Example#4 :-
Code :-
<%
=ScriptEngineBuildVersion
%>
Output :-
3715 |
|