打开解决方案
LicensingRedistributeLicenseProvider.cs,
找到
if(strAppKey == strFoundAppKey)
return new ComponentArt.Licensing.Providers.RedistributableLicense(this, "The App");
else
return false;
return new ComponentArt.Licensing.Providers.RedistributableLicense(this, "The App");
else
return false;
改成
if(strAppKey == strFoundAppKey)
return new ComponentArt.Licensing.Providers.RedistributableLicense(this, "The App");
else
return new ComponentArt.Licensing.Providers.RedistributableLicense(this, "The App");
return new ComponentArt.Licensing.Providers.RedistributableLicense(this, "The App");
else
return new ComponentArt.Licensing.Providers.RedistributableLicense(this, "The App");
另外
BaseClasses/WebControl.cs
找到
protected override void Render(HtmlTextWriter output
)
将如下语句注释掉
if (!IsLicensed())
{
RenderRedistributableWarning(output);
return;
}
{
RenderRedistributableWarning(output);
return;
}
重新编译就OK啦