0

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

4

1 に答える 1

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 を確認します。詳細はフォーラムで

于 2010-09-15T17:32:36.077 に答える