Wednesday 23 October 2013

C# - ASP.NET - How to fix error The name 'Application' does not exist in the current context


 Watch this example on YouTube



Replace
 Application("test") = "Stupid Error";
with
 Application["test"] = "Stupid Error";