惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

雷峰网
雷峰网
Y
Y Combinator Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
博客园_首页
J
Java Code Geeks
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
量子位
C
Check Point Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 三生石上(FineUI控件)
L
LangChain Blog
N
Netflix TechBlog - Medium
Hugging Face - Blog
Hugging Face - Blog
B
Blog
美团技术团队
Microsoft Security Blog
Microsoft Security Blog
P
Proofpoint News Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
宝玉的分享
宝玉的分享
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
Last Week in AI
Last Week in AI

博客园 - Calendar

windows平台下用C#访问HBase Hbase常用命令 Windows 7使用问题 小问题之动态调用另一个程序集里的方法 GM的Hybrid MapPoint批量导入Pushpin的方法 - Calendar - 博客园 通过两个点的经纬度计算距离 地震了 下载试用IE 7.0 Beta 3.0 google maps可以支持地理信息查询了(附上功能介绍) - Calendar - 博客园 prototype理解 - Calendar - 博客园 google maps的脚本值得看看 - Calendar - 博客园 google卫星地图的url计算 linux下运行的eclipse的说明 用socket连接pop3服务器遇到的小问题 google maps又更新了 我是如何取得Reflector的真实程序的 对J2ME的想法 MiniQQ与LumaQQ
CuteEditor测试
Calendar · 2010-03-19 · via 博客园 - Calendar

 1 
 2 byte[] byteKey = new byte[] { 700x35500x420x310x380x3670 };
 3 DES des = new DESCryptoServiceProvider();
 4 ICryptoTransform f=  des.CreateEncryptor(byteKey, byteKey);
 5 byte[] bytes = Encoding.Default.GetBytes("None;zh-cn;None;8H489467LS631834L;CuteEditor.Editor for asp.net is licensed.;1.6;5;domain.com;192.168.1.101;01/01/2099");
 6 bytes = f.TransformFinalBlock(bytes, 0, bytes.Length);
 7 f.Dispose();
 8 FileStream fs =new FileStream(Server.MapPath("/bin/CuteEditor.lic"), FileMode.Create, FileAccess.Write);
 9 fs.Write(bytes, 0, bytes.Length);
10 fs.Flush();
11 fs.Close();
12 


 

昨天在找哪一个在线HTML编辑器更好用,FreeTextBox和FCKEditor还可以,应用很广泛,不过后来在博客园看到CuteEditor,发现功能更强。

下载测试版,在localhost试一下效果,运行时发现它在找license文件,自己写一个key好了,反正它的校验也比较简单。

商用的还是去买它的服务吧,也没多少钱。

 在线demo: http://cutesoft.net/example/general.aspx.