zoukankan      html  css  js  c++  java
  • MVCRESTSilverLight 之 Global.asax.cs

    using System;

    using System.Collections.Generic;

    using System.Linq;

    using System.Web;

    using System.Web.Mvc;

    using System.Web.Routing;

    using RestExample.Web.Api;

    using Microsoft.ApplicationServer.Http;

     

    namespace RestExample.Web

    {

    // Note: For instructions on enabling IIS6 or IIS7 classic mode,

    // visit http://go.microsoft.com/?LinkId=9394801

     

    public class MvcApplication : System.Web.HttpApplication

    {

    public static void RegisterGlobalFilters(GlobalFilterCollection filters)

    {

    filters.Add(new HandleErrorAttribute());

    }

     

    public static void RegisterRoutes(RouteCollection routes)

    {

    //忽略对.axd文件的Route,也就是和WebForm一样直接去访问.axd文件

    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

     

    HttpConfiguration config = new HttpConfiguration();

    //config.

    routes.MapServiceRoute<CustomerApi>("api/customers",config);

     

    routes.MapRoute(

    "Default", // Route name

    "{controller}/{action}/{id}", // URL with parameters

    new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults

    );

     

    }

     

    protected void Application_Start()

    {

    AreaRegistration.RegisterAllAreas();

     

    RegisterGlobalFilters(GlobalFilters.Filters);

    RegisterRoutes(RouteTable.Routes);

    }

    }

    }

     
     
    作者:易简.道    
     
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
  • 相关阅读:
    sqlite3中给表添加列
    webpack打包后服务端__dirname失效问题
    nodejs查看本机hosts文件域名对应ip
    vscode远程调试node服务端
    git 删除错误commit
    npm安装模块没有权限解决办法
    node gyp编译所需要的环境
    npm和yarn的淘宝镜像添加
    笨办法学Python 笔记
    梯度下降法优化线性回归算法参数
  • 原文地址:https://www.cnblogs.com/xyicheng/p/2361916.html
Copyright © 2011-2022 走看看