You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
484 B
19 lines
484 B
using NFine.Code;
|
|
using System.Web.Mvc;
|
|
using System.Web.Routing;
|
|
|
|
namespace NFine.Web
|
|
{
|
|
public class MvcApplication : System.Web.HttpApplication
|
|
{
|
|
/// <summary>
|
|
/// 启动应用程序
|
|
/// </summary>
|
|
protected void Application_Start()
|
|
{
|
|
AreaRegistration.RegisterAllAreas();
|
|
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
|
|
RouteConfig.RegisterRoutes(RouteTable.Routes);
|
|
}
|
|
}
|
|
}
|