A set of technologies in .NET for building web applications and web services. Miscellaneous topics that do not fit into specific categories.
For the API side of things CORS is just a header you add to the response so that any browser that implements CORS will check for. If no CORS is enabled on your API, then a browser will not accept any responses from your API. Either you can add the domain name of the web application to the Access-Control-Allow-Origin header value, or a wild card i.e. "*" if you want the API to be used by any web application.