1
我的global.asax文件。好像asp.net global.asax.cs和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框架。當我嘗試路由時,我的項目不能看到我的路由規則。
謝謝,但我有關於路由的問題。我的網頁無法訪問我的路由器,並顯示此消息「在路由集合中找不到名爲'xxx'的路由」..我認爲它有關它。可能嗎? – serdar 2013-04-21 00:41:27
您應該用您的完整路線Global.asax/RegisterRoutes和完整堆棧跟蹤更新您收到的錯誤的問題。 – 2013-04-21 09:28:48