5

我一直在网上寻找这个问题的答案几个小时,所以我希望这里有人可以提供帮助。

我在 VS 2010(.Net 4.0 框架,C#)中有一个网站,在根目录中有一个 Global.asax 文件,在 App_Code 文件夹中有一个 Global.asax.cs 文件。(请注意,这是一个网站,而不是 Web 应用程序)。当从我的本地开发机器上运行这个网站时,一切都按预期运行——更具体地说,Global.asax.cs 文件中的 Session_Start 事件会触发并在每个会话开始时运行一些代码来获取用户的登录凭据,这决定了他们什么允许根据其安全级别在应用程序中查看/编辑。

但是,一旦我将此网站发布到 Windows 2003 R2 服务器上,Global.asax.cs 文件中的任何事件都不会触发。(只有 Session_Start 事件需要代码,但我也将代码放在 Application_Start 中,只是为了看看它是否会触发 - 它没有)。

这是 Global.asax 代码:

<%@ Application CodeBehind="~\App_Code\Global.asax.cs" Inherits="Global" Language="C#" %>

这是 Global.asax.cs 代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

/// <summary>
/// Summary description for Global
/// </summary>
public partial class Global : System.Web.HttpApplication
{

    public Global()
    {

    // TODO: Add constructor logic here

    }

    protected void Application_Start(object sender, EventArgs e)
    {
        // Code that runs on application startup
    }

    protected void Application_End(object sender, EventArgs e)
    {
        //  Code that runs on application shutdown
    }

    protected void Application_Error(object sender, EventArgs e)
    {
        // Code that runs when an unhandled error occurs

    }

    void Session_Start(object sender, EventArgs e)
    {
        try
        {
            Session["SessionSink"] = new SessionSink();             
            this.GetUserName();                              
        }
        catch (Exception ex)
        {
            string msg = "An error occurred in Global.asax::Session_Start";
            ExceptionWriter ew = new ExceptionWriter();
            ew.LogError(msg, ex);
        }
    }

    void Session_End(object sender, EventArgs e)
    {
        // Code that runs when a session ends. 

    }
}

基于我读过的其他答案/讨论的一些注释:一旦发布, PrecompiledApp.config 确实出现在网站的文件夹中。此外,App_global.asax.compiled 和 App_global.asax.dll 出现在 bin 文件夹中。

任何人都知道问题可能是什么?为什么这可以在我的本地机器上工作,但一旦发布到服务器就不行?是否有我缺少的 IIS 设置?

这是我第一次使用 asp.net “网站”,所以任何帮助将不胜感激。谢谢。

4

1 回答 1

0

您可以完全不使用 global.asax.cs 来规避它;即删除 global.asax.cs 并将 global.asax 修改为

<%@ Application Language="C#" Inherits="System.Web.HttpApplication" %>
<script runat="server">
  public override void Init() {
    base.Init();
    var module = (SessionStateModule)Modules["Session"];
    module.Start += new EventHandler((sender, args) => {
        // create session sink here
    });
  }
</script>
于 2014-05-20T13:21:52.547 回答