R
Rajesh.V
I saw this code
protected void Application_Start(Object sender, EventArgs e)
{
// Initialize the Environment
new SomeObject.
}
Does this mean to be the same as
Application.Add("Environment", someobject);
protected void Application_Start(Object sender, EventArgs e)
{
// Initialize the Environment
new SomeObject.
}
Does this mean to be the same as
Application.Add("Environment", someobject);