Q:

What are the browsers supported by ASP.NET Core Blazor?

0

This code will help you to understand how the browsers supported by ASP.NET Core Blazor.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Blazor server-side supports almost all modern browsers out of the box except Microsoft’s Internet Explorer (IE 11), which needs Polyfills to be supported.

[_Host.cshtml]

//polyfills to be added for IE

<script src="https://cdnjs.cloudflare.com/ajax/libs/core-js/2.6.5/core.min.js"></script>

<script src="https://polyfill.io/v3/polyfill.min.js?features=fetch"></script>

Blazor WebAssembly (client-side) supports all modern browsers except Internet Explorer.

I would suggest you check the below link for better understanding:

https://docs.microsoft.com/en-us/aspnet/core/blazor/supported-platforms

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now