zoukankan
html css js c++ java
在有源代码的情况下注释ComponentArt的许可证检查,彻底无风险使用ComponentArt
打开解决方案
LicensingRedistributeLicenseProvider.cs,
找到
if
(strAppKey
==
strFoundAppKey)
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
"
);
另外
BaseClasses/WebControl.cs
找到
protected
override
void
Render(HtmlTextWriter output
)
将如下语句注释掉
if
(
!
IsLicensed())
...
{
RenderRedistributableWarning(output);
return
;
}
重新编译就OK啦
查看全文
相关阅读:
iOS面试题
iOS-block
iOS开发设计模式
iOS-宏定义
正则表达式(转)
iOS-textfield控制光标开始位置
initWithNibName&initWithCoder &awakeFromNib&UIView常见属性方法
iOS应用生命周期
iOS-app发布新版本步骤
iOS从App跳转至系统设置菜单各功能项
原文地址:https://www.cnblogs.com/hainange/p/6153407.html
最新文章
使用limma、Glimma和edgeR,RNA-seq数据分析易如反掌
零基础照样做RNA-seq差异分析
120分的转录组试题和答案
转录组分析
关于javaweb 项目 ssm框架 启动tomcat服务器同时启动一个socket服务
intellij idea 的快捷键方法
spring与mybatis三种整合方法
SSM框架——详细整合教程(Spring+SpringMVC+MyBatis)
java框架篇---spring aop两种配置方式
gradle上sourceSets配置&同名文件合并问题
热门文章
ssm中web配置各框架的配置文件路径方式
MyBatis Spring整合配置映射接口类与映射xml文件
gradle + mybatis 复制xml等配置文件到输出目录
解决log4j:WARN No appenders could be found for logger (org.springframework.web.context.ContextLoader)警告信息的问题
程序员非技术面试题(考智力)
iOS-获取崩溃日志
iOS面试题超全!
百度面试题
iOS面试
招聘一个靠谱的iOS
Copyright © 2011-2022 走看看