当前位置 : 主页 > 网页制作 > Nodejs >

WebService支持Post和Get方法

来源:互联网 收集:自由互联 发布时间:2021-06-24
?xml version= " 1.0 " ?configuration xmlns= " http://schemas.microsoft.com/.NetConfiguration/v2.0 " system.webcompilation defaultLanguage= " c# " debug= " true " /webServicesprotocolsadd name= " HttpGet " /add name= " HttpPost " //protocols
<?xml version="1.0"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<system.web>
<compilation defaultLanguage="c#" debug="true"/>
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
</system.web>
</configuration>
网友评论