this is the Global.asax.vb located in the App_code folder of the WEB site. I did nothing to this file. I just had my ISP load .NET 2.0 and was trying to learn it.
here is the url to a test page, delete spaces in URL
http : // pcsupportguru . com/test . aspx
using VS 2005 .NET 2.0
Error showing environment is "Keyword is not a valid identifier"
Any ideas
TIA
PS this site has been a test site and a bunch of different .NETs have been loaded over time. Perhaps I need to clear it all out?
DougP
< I Built one
here is the url to a test page, delete spaces in URL
http : // pcsupportguru . com/test . aspx
using VS 2005 .NET 2.0
Error showing environment is "Keyword is not a valid identifier"
Code:
Imports System.Web
Imports System.Web.SessionState
Public Class [COLOR=Blue]Global[/color]< blue squiggly
Inherits System.Web.HttpApplication
#Region " Component Designer Generated Code "
Public Sub New()
MyBase.New()
'This call is required by the Component Designer.
InitializeComponent()
'Add any initialization after the InitializeComponent() call
End Sub
'Required by the Component Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Component Designer
'It can be modified using the Component Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
components = New System.ComponentModel.Container()
End Sub
#End Region
Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
' Fires when the application is started
End Sub
Any ideas
TIA
PS this site has been a test site and a bunch of different .NETs have been loaded over time. Perhaps I need to clear it all out?
DougP
< I Built one