The ASP. NET Web API uses a default route put delete action is restricted under IIS

Source: Internet
Author: User

The ASP. NET Web API uses the default route

1. Put, delete actions are limited in IIS (available through remove WebDAV, see previous article )

2. Each controller can write action is limited, in the case of a large number of single business operations need to establish multiple controller


Using the new route, use only get, post actions

protected void Application_Start (object sender, EventArgs e) {     var config = globalconfiguration.configuration;     var routes = config. Routes;     Routes. Maphttproute (         "Defaulthttproute",         "Api/{controller}/{action}/{id}",         new {id = routeparameter.optional }     ); }

public class Testcontroller:apicontroller {     [httpget] public     string[] List () {         return new string[] {"A", "B" , "C"};     }     [HttpGet] [HttpPost]    Public string[] Detail (string id) {         return ID;}     }


The ASP. NET Web API uses a default route put delete action is restricted under IIS

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.