- Prerequisites
- ASP.NET Core application
- See also
Contact Support
How to Render the ASP.NET Core Application in IE11 Web Browser
4 Dec 20241 minute to read
This section explains how to render the ASP.NET Core application in IE11 web browser. The Microsoft Internet Explorer supports ASP.NET Core
app with additional polyfills in .NET Core apps.
Prerequisites
System requirements for ASP.NET Core components
ASP.NET Core application
The following steps to add the polyfills in the ASP.NET Core application.
1.Create a ASP.NET Core application using ASP.NET Core Getting Started documentation.
2.Add the polyfill script reference in the <head>
element of the ~/Pages/Shared/_Layout.cshtml
page.
<head>
...
<!-- Minified version of `es6-promise` below. -->
<script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.min.js"></script>
</head>
NOTE
This polyfill is required to configure in ASP.NET Core application for IE 11 web browser. For further detail, refer to the link here.
3.Run the application in the IE 11 web browser and the Syncfusion® ASP.NET Core Control is now rendered on IE 11.