I'm attempting to send a DELETE request through csharp, ASP.NET and its returnin a (405) Error. Below is the code that I'm using:
request = System.Net.HttpWebRequest.Create(myTargetURL); request.Method = "DELETE"; response = (System.Net.HttpWebResponse)request.GetResponse();
Anybody can shed some light on this? is it something I'm not doing from a code point of view?