Dear Syncfusion,
First of all, I want to thank you for your great software. I am building
a software application and trying to use the nested grid view, but I am
encountering a license error:
“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.”
Here's what I have done so far:
I am using ASP.NET Core MVC with C#. I downloaded the NuGet packages
Syncfusion.EJ2.AspNet.Core v26.1.35 and Syncfusion.Licensing v26.1.35.
I then went to Syncfusion -> My Dashboard -> Downloads and Keys
-> Get License Key -> Platform: ASP.NET Core, Version 26.x.x. I copied
the license key and added it to my program.cs file:
//Register
Syncfusion license
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("Mgo+DSMBMAY9C3t2U1hhQlJBfV5AQmBIYVp/TGpJfl96cVxMZVVBJAtUQF1hTX5Udk1hW39bcH1SRWlV");
var app = builder.Build();
//
Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
app.UseExceptionHandler("/Home/Error");
// The default HSTS value is 30 days. You may want to
change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
Please
help me remove this error. Thank you
Arron Arriola