ConvincingMail.AdvancedAutoSuggest.dll 无法在服务器上运行
我正在使用 ConvincingMail.AdvancedAutoSuggest.dll,它在本地主机上工作正常。将网站上传到网络服务器后,我发现自动建议不起作用。但网站正在运行。
请告诉我这是什么原因,以及解决方案。
(如果没有可能,请告诉我替换ConvincingMail.AdvancedAutoSuggest.dll)
提前致谢。
问候
德巴希斯
I'm using ConvincingMail.AdvancedAutoSuggest.dll, It's woking fine at localhost. After uploading the site on Web Server I found that autosuggest not working. But Website is running.
Please tell me what will be the reason, and solution.
(If there is no possibility, tell me the replacement of ConvincingMail.AdvancedAutoSuggest.dll)
Thanks in advance.
Regards
Debashis
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发生这种情况是因为当非从本地访问 Web 服务时,默认情况下禁用 GET 和 POST。要解决此问题,您需要将其添加到您的 web.config 文件中:
在其下方
例如,检查演示应用程序 web.config。 论坛中的更多信息。
It happens because the GET and POST are disabled by default when acessing a webservice not from local. To fix this you need to add this in your web.config file:
under it
For example check the demo application web.config. more info in the forum.