且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在web项目中添加.asmx文件(asp.net)C#

更新时间:2023-02-15 19:14:00

请看下面的链接:



http://msdn.microsoft.com/en-us/library/ywx7tzs7(v = vs.90).aspx [ ^ ]



http://***.com / questions / 20281144 / create-a-asmx-web-service-in-visual-studio-2013 [ ^ ]



但是,你应该避免使用ASMX。它现在被认为是旧的遗产。



较新的Microsoft平台甚至不支持ASMX(例如SharePoint 2013)。



你应该考虑转移到 WCF [ ^ ]或 Rest API [ ^ ]。
Look at the links below:

http://msdn.microsoft.com/en-us/library/ywx7tzs7(v=vs.90).aspx[^]

http://***.com/questions/20281144/create-a-asmx-web-service-in-visual-studio-2013[^]

However, you should avoid to use ASMX. It's considered as old legacy now.

The newer Microsoft Platforms don't even support ASMX (such as SharePoint 2013).

You should consider moving to WCF [^]or Rest APIs[^].