Using VBScript function in JScript when Language=VBScript

EdwardC1932

New Member
I know it is possible to use functions coded in VBScript if language="JScript" as follows :\[code\]<%@ language="JScript" %><% Response.Write(myFunc()); %><script runat="server" language="vbscript"> Function myFunc myFunc="test" End Function</script>\[/code\]However, before refactoring a script in JScript, I wanted to know if, assuming the language is set to be VBScript, is there still a possibility to use VBScript functions in the JScript. Or, in that case, only the other way aroud is possible.Thanks!
 
Back
Top