如何使用WebAPI没有ASP.NET MVC?

前端之家收集整理的这篇文章主要介绍了如何使用WebAPI没有ASP.NET MVC?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用WebAPI作为我的现有项目(经典ASP.NET),但据我所知,只能使用WebAPI与MVC.

使用ASP.NET可以使用WebAPI吗?

解决方法

linked page

Although ASP.NET Web API is packaged with ASP.NET MVC,it is easy to
add Web API to a traditional ASP.NET Web Forms application. This
tutorial walks you through the steps.

To use Web API in a Web Forms application,there are two main steps:

Add a Web API controller that derives from the ApiController class.
Add a route table to the Application_Start method. Create a Web Forms
Project

Start Visual Studio 2010 and select New Project from the Start page.
Or,from the File menu,select New and then Project.

In the Templates pane,select Installed Templates and expand the Visual C# node. Under Visual C#,select Web. In the list of project templates,select ASP.NET Web Application. Enter a name for the project and click OK.

原文链接:https://www.f2er.com/aspnet/250222.html

猜你在找的asp.Net相关文章