how do i call a vbscript function (which is between <%%>)
from a vbscript script function (which is between script
tags-<script language="vbscr ipt"></script>, and how do the
argument are reffered/transfered?
the code goes like this:
<%function LegalCatNum(num )
if....then
LegalCatNum=tru e
else
LegalCatNum=fal se
end if
end function %>
<script language="vbscr ipt">
function XY
if LeaglCatNum(arg ) then <--this line is the problem
else ....
end if
end function
</script>
thanks a lot in advance
niv
from a vbscript script function (which is between script
tags-<script language="vbscr ipt"></script>, and how do the
argument are reffered/transfered?
the code goes like this:
<%function LegalCatNum(num )
if....then
LegalCatNum=tru e
else
LegalCatNum=fal se
end if
end function %>
<script language="vbscr ipt">
function XY
if LeaglCatNum(arg ) then <--this line is the problem
else ....
end if
end function
</script>
thanks a lot in advance
niv
Comment