both Var1 and Var2 are variants rather than (Gmail webspace)
both Var1 and Var2 are variants rather than strings. In VB .NET, the type declaration applies to all undeclared variables since the last explicit type declaration. So the previous statement in VB .NET would cast Var1, Var2, and Var3 as strings. In VB 6, declaring and initializing variables are separate steps; aside from allowing VB to assign variables their default values, variables cannot be initialized at the same time they are declared. In VB .NET, variables can be assigned an initial value when they are declared. VB 6 allowes you to declare fixed-length strings; they are not supported, however, in VB .NET. VB 6 allows you to define the lower bound of an array when it is initialized. In VB .NET, all arrays have a lower bound of 0. Hence, the VB 6 syntax: Static array(1 To 20) As String is not supported in VB .NET. In VB 6, arrays are either fixed length or dynamic; in VB .NET, all arrays are dynamic. In VB 6, it is possible to define a procedure or a function as Static, meaning that all local variables defined in that routine are static. In VB .NET, the use of the Static keyword with the Function or Sub statements is not supported. See Also Dim Statement Stop Statement Syntax Stop Description Suspends program execution Rules at a Glance There is no limit to the number and position of Stop statements within procedures. The Stop statement acts like a breakpoint placing the program in break mode and highlighting the current line in the development environment allowing you to step through the code line by line. Programming Tips and Gotchas Stop is intended primarily for use in the design-time environment, where it suspends program execution without terminating it. In the runtime environment, however, Stop will cause the debugger to be invoked. Unlike the End statement, Stop does not explicitly close any open files or clear any variables, except in a compiled executable. See Also
Hint: If you are looking for high quality webhost to host and run your jsp application check Vision web hosting jsp services