Tệp Global.asax.cs ở đâu?

Tôi đang sử dụng VS 2008. Tôi đã tạo một dự án trang web Asp.net mới từ Tệp-> Mới-> Trang web-> Trang web Asp.net.

Bây giờ tôi muốn thêm Global.asax cũng như tệp .cs cho dự án. Vì vậy, tôi nhấp chuột phải vào dự án -> Thêm mục mới-> Lớp ứng dụng toàn cầu. Sau đó, tôi nhấp vào nút thêm.

Tệp Global.asax đã được thêm vào với nội dung như trong

<%@ Application Language="C#" %>

 <script runat="server"%>

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

    }

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

    }

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

    }

    void Session_Start(object sender, EventArgs e) 
    {
        // Code that runs when a new session is started

    }

    void Session_End(object sender, EventArgs e) 
    {
        // Code that runs when a session ends. 
        // Note: The Session_End event is raised only when the sessionstate mode
        // is set to InProc in the Web.config file. If session mode is set to StateServer 
        // or SQLServer, the event is not raised.

    }

</script>

Điều này ổn. Nhưng tệp Global.asax.cs ở đâu?

Cảm ơn

45
задан Anirudha Gupta 25 September 2014 в 11:59
поделиться