本文介绍了服务器没有响应+响应。答复是:“ "的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
I am using Pop3Client to read messages in inbox in my asp.net application.
i got the following error in connecting to mail:
The server did not respond with a + response. The response was: " "
我的代码:
My code:
Pop3Client pop3Client;
pop3Client = new Pop3Client();
pop3Client.Connect("mail.bi****.com", 110, false);
pop3Client.Authenticate("[email protected]", "h****1200",
AuthenticationMethod.UsernameAndPassword);
这个错误是什么? PLZ有助于解决这个问题
我尝试过:
https ://www.aspforums.net/Threads/191320/Solved-The-server-did-not-respond-with-a-OK-response-The-response-was--ERR-AUTH-Web-login-required/
i尝试上面的链接但没有工作
What is this error about? plz help to resolve this
What I have tried:
https://www.aspforums.net/Threads/191320/Solved-The-server-did-not-respond-with-a-OK-response-The-response-was--ERR-AUTH-Web-login-required/
i tried with above link but not working
推荐答案
It may not a POP3 server, but something else is like a IMAP server.
这篇关于服务器没有响应+响应。答复是:“ "的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!