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

推荐订阅源

爱范儿
爱范儿
博客园_首页
U
Unit 42
Apple Machine Learning Research
Apple Machine Learning Research
云风的 BLOG
云风的 BLOG
MongoDB | Blog
MongoDB | Blog
美团技术团队
H
Help Net Security
G
Google Developers Blog
B
Blog RSS Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
aimingoo的专栏
aimingoo的专栏
Google DeepMind News
Google DeepMind News
J
Java Code Geeks
M
MIT News - Artificial intelligence
腾讯CDC
IT之家
IT之家
Vercel News
Vercel News
C
Check Point Blog
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
I
InfoQ
博客园 - 司徒正美
A
About on SuperTechFans

博客园 - 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.