标签:config web system 文件 config文件 新建 pre 默认 pos
在C#中,新建一个webservice,默认是post类型的。如果需要支持Get请求,需要对web.config文件进行配置
<system.web> <compilation debug="true" targetFramework="4.6.1"/> <httpRuntime targetFramework="4.6.1"/> <webServices> <protocols> <add name="HttpGet"/> <add name="HttpPost"/> </protocols> </webServices> </system.web>
标签:config web system 文件 config文件 新建 pre 默认 pos
原文地址:http://www.cnblogs.com/caoyc/p/6830095.html