i've set the root folder as an application folder and i've
set the Global.asax to use a code behind file
<%@ Application Codebehind="Global.asax.vb" %>
In the Global.asax.vb file i set a variable in the method
Sub Application_Start(Sender As Object, E As EventArgs)
Application("Test"
= "Global.asax starting"
End Sub
and then try and output this in a code behind page
lblMessage.Text = " started " & Application("Test"
& " here"
But the Application("Test"
bit is not shown. Any help much appreciated
set the Global.asax to use a code behind file
<%@ Application Codebehind="Global.asax.vb" %>
In the Global.asax.vb file i set a variable in the method
Sub Application_Start(Sender As Object, E As EventArgs)
Application("Test"
End Sub
and then try and output this in a code behind page
lblMessage.Text = " started " & Application("Test"
But the Application("Test"