Option Explicit On Programming Tips and Gotchas (Verizon web hosting)
Option Explicit On Programming Tips and Gotchas It is considered good programming practice to always use the OptionExplicit statement. The following example shows why: 1: Dim iVariable As Integer 2: iVariable = 100 3: iVariable = iVariable + 50 4: MsgBox iVariable In this code snippet, an integer variable, iVariable, has been declared. However, because the name of the variable has been mistyped in line 3, the message box shows its value as only 50 instead of 150. This is because iVarable is assumed to be an undeclared variable whose value is 0. If the OptionExplicit statement had been used, the code would not have compiled, and iVarable would have been highlighted as the cause. For an ASP.NET page, you use the @PAGE directive rather than OptionExplicit to require variable declaration. Its syntax is: <%@ Page Language="VB" Explicit=true|false %> By default, Explicit is true in ASP.NET pages. You can also use the
Note: If you are looking for best hosting provider to host and run your tomcat application check Astra tomcat hosting services