I have vbscript in an asp.net page that need to call a function in a .vbs file, so far I'm unable to. I've tried using:
<script language="vbscript" src="FileName.vbs"/>
<script language="vbscript">
Dim x
.
.
x = FunctionName
.
.
</script>
Is this the correct way?
Lou
<script language="vbscript" src="FileName.vbs"/>
<script language="vbscript">
Dim x
.
.
x = FunctionName
.
.
</script>
Is this the correct way?
Lou