Answers for "fix cors in asp.net web api"

C#
0

enable cors asp.net mvc

public static void Register(HttpConfiguration config)
{
    // New code
    config.EnableCors();
}
Posted by: Guest on October-04-2020
0

enable cors asp.net mvc

Response.AppendHeader("Access-Control-Allow-Origin", "*");
Posted by: Guest on October-04-2020

C# Answers by Framework

Browse Popular Code Answers by Language