Syncfusion License Issue

I have Re validated the license and placed the license key in global.aspx.cs  but still showing " This application was built using a trial version of Syncfusion Essential Studio. To remove the license validation message permanently, a valid license key must be included. Claim your free account" issue on screen.

  • ASP.NET MVC
  • Syncfusion 26.2.12

1 Reply

SK Subathra Kaliamoorthy Syncfusion Team September 10, 2024 02:07 PM UTC

Hi Kalpatharu,


Thank you for reaching out to us! 


Based on the provided details, we suspect that you would have utilized Syncfusion JavaScript Components in an ASP.NET MVC App, resulting in a license error popup. To resolve this issue, it is recommended to include the license key within the 'Layout.cshtml' file located in the Shared folder as shown below.
 

<head>

    <meta charset="utf-8" />

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>@ViewBag.Title - My ASP.NET Application</title>

    <link rel="stylesheet" rel='nofollow' href= https://cdn.syncfusion.com/ej2/24.1.41/fluent.css />

    <!-- Syncfusion ASP.NET MVC controls scripts -->

    <script src= https://cdn.syncfusion.com/ej2/24.1.41/dist/ej2.min.js></script>

 

    @Styles.Render("~/Content/css")

    @Scripts.Render("~/bundles/modernizr")

    <script>

        // Registering Syncfusion license key

        ej.base.registerLicense("License Key");

    </script>

</head>

 

Please check the following link and sample for you reference.

 

Licensing Troubleshoot in Syncfusion ASP.NET MVC Component


Sample:https://www.syncfusion.com/downloads/support/directtrac/general/ze/WebApplicationLicense-1550374448


Regards,
Subathra K.

Loader.
Up arrow icon