Skip to content Skip to sidebar Skip to footer

ASP.NET Web API - Ajax PUT - 405 Method Not Allowed (Entity Framework)

I am trying to PUT an update to a user using JSON to ASP.NET Web API via JQuery's Ajax function. I keep getting a 405 (Method not Allowed) response from the server. I have tried ju

Solution 1:

You need enable CORS for web api, else when send a request, you always get response 405 not allow. Look this.


Post a Comment for "ASP.NET Web API - Ajax PUT - 405 Method Not Allowed (Entity Framework)"