Hi
I have an ASP.net web forms application (Framework 4.7.2) and am getting the error
the type or namespace name 'syncfusion' could not be found(are you missing a using directive or an assemble reference). Should I be downloading a previous version of syncfusion
namespace Landmark.WebForms
{
public class Global : HttpApplication
{
void Application_Start(object sender, EventArgs e)
{
//Register Syncfusion license
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("NjAwOxxxzkyZTM0MmUzMGdoYkszZDNOyyyg9");
// Code that runs on application startup
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
}
}
}