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)"