Language Basics ASP.Net

 
Sub Page_Load()  
    Response.Write ("Calling Subroutine 1...")
    Call Subroutine_1()
    Response.Write ("Calling Subroutine 2...")
    Call Subroutine_2()
    Response.Write ("Calling Subroutine 1...")
    Call Subroutine_1()
End Sub
  Sub Subroutine_1()
    Dim Different As String
    Different = "Hello I'm the variable Different in Subroutine 1"
    Response.Write (Different)
  End Sub
  Sub Subroutine_2()
    Dim Different As String
    Different = "Hello I'm the variable Different in Subroutine 2"
    Response.Write (Different)
  End Sub



Scope