
Using VBScript and JScript on a Web Page
According to a Sept. 1998 Tech article in Visual Interdev:
"For the most part, you can mix and match scripting languages on the same
page without any problems. A script in one language can call routines in
another language and share global variables with scripts in another
language. "
I've tried the following and get a data type mismatch error:
.
.
<script language="Javascript">
function foo(){
return(0)
Quote:
}
</script>
.
.
.
<%
Dim footest
foottest = foo()
%>
Any suggestions?
Thanks!