私のglobal.asaxファイル。のようです
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;
namespace xxxx
{
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
}
}
}
しかし、他のglobal.asaxファイルを見ると、
<%@ Application Language="C#" %>
<%@ Import Namespace="System" %>
<%@ Import Namespace="System.Diagnostics" %>
<script runat="server">
void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
}
</script>
私のglobal.asaxファイルがそれらと異なるのはなぜですか? 私は 4.0 フレームワークを使用しています。ルーティングしようとすると、プロジェクトがルート ルールを認識できません。