Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
a :
a : 1000
Call
Response.Write( "a : " & a & "<br>" )
test1
Response.Write( "a : " & a & "<br>" )
Response.Write( "a : " & a & "<br>" )
Call test1()
Response.Write( "a : " & a & "<br>" )
Option Explicit
Dim myvar
Response.Write "myvar before call to sub: " & myvar & "<br />"
Call mysub()
Response.Write "myvar after call to sub: " & myvar & "<br />"
Sub mysub()
myvar = "value assigned in sub"
End Sub