我尝试使用WebRequest(特别是通过http)删除远程图像,但我收到以下错误消息:
"The remote server returned an error: (405) Method Not Allowed.".
这是我正在使用的代码......
WebRequest webRequest = WebRequest.Create("http://localhost/TestImage/5045.jpg");
webRequest.Method = WebRequestMethods.Ftp.DeleteFile; // "DELETE";
HttpWebResponse httpReponse = (HttpWebResponse)webRequest.GetResponse();
请指教......
谢谢。