我用Visual Studio 2008的发布我的asp.net网站。 当我打开的网站服务器(Windows 2008的服务器)上,我注意到,在Global.asax中的代码没有运行。 我的Global.asax身体是类似于:
<%@ Application Language="C#" %>
<script runat="server">
protected void Application_Start()
{
// Initialize some site settings like a task scheduler
}
protected void Application_End(object sender, EventArgs e)
{
// Perform some clean up code
}
</script>
有一个App_global.asax.dll在编译网站bin文件夹,但似乎并没有帮助。
有没有办法,我缺少一个配置选项? 卸下App_global.asax.dll和使用原始的Global.asax与预编译的网站工作正常。