HttpWebRequest-删除"方法不允许。"

时间:2015-01-13 05:27:32

标签: c# asp.net http httpwebrequest


我尝试使用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();


请指教......
谢谢。

0 个答案:

没有答案