¿Dónde está el archivo Global.asax.cs?

Estoy usando VS 2008. He creado un nuevo proyecto de sitio web Asp.net desde Archivo-> Nuevo-> Sitio web-> Sitio web Asp.net.

Ahora quiero agregar el archivo Global.asax y el archivo .cs al proyecto. Entonces hago clic derecho en el proyecto -> Agregar nuevo elemento-> Clase de aplicación global. Luego hice clic en el botón Agregar.

El archivo Global.asax se agregó con el contenido como

<%@ 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>

Esto esta bien. Pero, ¿dónde está el archivo Global.asax.cs?

Gracia