我正在使用ConvincingMail.AdvancedAutoSuggest.dll,它在localhost上很好。在Web服务器上上传网站后,我发现autosuggest无法正常工作。但网站正在运行。
请告诉我原因和解决方案。
(如果没有可能,请告诉我替换ConvincingMail.AdvancedAutoSuggest.dll)
提前致谢。
此致
Debashis
答案 0 :(得分:0)
发生这种情况是因为在访问Web服务而非本地访问时,默认情况下禁用GET和POST。要解决此问题,您需要在web.config文件中添加:
in web.config file find the <system.web> section and add
<webServices>
<protocols>
<add name="HttpSoap"/>
<add name="HttpPost"/>
<add name="HttpGet"/>
<add name="Documentation"/>
<add name="HttpPostLocalhost"/>
</protocols>
</webServices>
在它下面 例如,检查演示应用程序web.config。 more info in the forum