enable cors in mvc web api code example
Example 1: enable cors asp.net mvc
public static void Register(HttpConfiguration config)
{
var corsAttr = new EnableCorsAttribute("http://example.com", "*", "*");
config.EnableCors(corsAttr);
}
Example 2: how to enable cors policy in web api
BY LOVE
To enable CORS policy in web api, You need to add this method in your Global.asax file of API project. i.e
protected void Application_BeginRequest()
{
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "*");
}
Example 3: enable cors asp.net mvc
Response.AppendHeader("Access-Control-Allow-Origin", "*");