I usually create web application projects and use code, but I have a requirement to create a small demo application for unpacking using inline code.
I added the global.asax file to the application, but for some odd reason, Visual Studio 2008 SP1 will not allow me to edit any code between script tags, i.e. add code to the event handler, such as Application_Start, Session_Start. However, VS allows editing outside of script tags.
It is just a simple file-based web application using an embedded web server.
Any ideas what is going on?
This inline global.asax VS code creates:
<%@ Application Language="C#" %>
<script runat="server">
void Application_Start(object sender, EventArgs e)
{
}
void Application_End(object sender, EventArgs e)
{
}
void Application_Error(object sender, EventArgs e)
{
}
void Session_Start(object sender, EventArgs e)
{
}
void Session_End(object sender, EventArgs e)
{
}
</script>