摘要: 在《KindEditor-KindEditor简介》中提到了KindEditor编辑器的使用方法,通过使用KE.show(config)方法即可将编辑器添加到文档中。下面是一段源码:KE.show = function(args) {KE.init(args);KE.event.ready(function() { KE.create(args.id); });};从源码中可以看出,有两种使用编辑器的方法:法一:KE.show(config);法二:KE.init(config);KE.create(id);·无论使用哪种方式使用KindEditor编辑器,都必须进行参数配置; 阅读全文
posted @ 2011-10-09 14:19 阿Tai 阅读(884) 评论(0) 推荐(0) 编辑
摘要: 最近写了几个类,给刚刚入门的同学们参考吧!Forms身份验证类:/*创建人:阿泰 *创建时间:2011-9-15 *说明:获取、写入forms身份验证所存储的票据,为Forms身份验证登录所用(VS2010版本) */using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Security;/// <summary>///FormsData 的摘要说明/// </summary>public class FormsData{ pub 阅读全文
posted @ 2011-10-09 00:12 阿Tai 阅读(2347) 评论(5) 推荐(2) 编辑