Thread
:
Subroutines in VBScript
View Single Post
cancer10
Go4Expert Member
19Sep2008,17:37
I have this ASP code
<%
sub mysub
mytestvariable = 111
end sub
call mysub
response.write mytestvariable
%>
Why does the above code show BLANK when I
response.write mytestvariable
Shouldn't it output 111?