04 2007 档案
JS实时预览上传图片缩略图
摘要:提交 阅读全文
posted @ 2007-04-29 14:11 Caviare 阅读(1002) 评论(0) 推荐(0)
Lucene.NET初探(添加中)
摘要:Demo:http://www.dotlucene.net/documentation/api/index.htmlTechBBS:http://www.seek8.cn/showforum-9.aspxSolution:http://www.cnblogs.com/xuanfeng/archive/2006/11/30/578249.aspx 阅读全文
posted @ 2007-04-29 10:22 Caviare 阅读(167) 评论(0) 推荐(0)
JS图片处理例(添加中)
摘要:http://www.okajax.com/info/codedown/200611246.htmhttp://jquery.com/demo/thickbox/ 阅读全文
posted @ 2007-04-29 10:04 Caviare 阅读(503) 评论(0) 推荐(0)
Cookie 操作通用类
摘要:using System;using System.Web;/**//// /// Cookie 的摘要说明/// public class Cookie{ /**//// /// 创建Cookies /// /// Cookie 主键 /// Cookie 键值 /// Cookie 天数 /// Cookie ck = new Cookie(); ... 阅读全文
posted @ 2007-04-28 17:39 Caviare 阅读(328) 评论(0) 推荐(0)
Javascript 锁屏代码例
摘要:JavaScript锁屏 关闭 已经锁屏 .. 锁屏 阅读全文
posted @ 2007-04-28 15:37 Caviare 阅读(1601) 评论(0) 推荐(0)
處理用戶被踢出
摘要:思路:一.登陸時為每個用戶保存一個唯一ID號,處理頁判斷ID異同。代碼:登陸頁login.aspx.cs: protected void Button1_Click(object sender, EventArgs e) { Session["name"] = TextBox1.Text; if (Cache["userlist"] == null) ... 阅读全文
posted @ 2007-04-27 15:00 Caviare 阅读(259) 评论(0) 推荐(0)
得到数据库的可视化结构
摘要:SELECT CASE WHEN a.colorder = 1 THEN d.name ELSE '' END AS 表名, a.colorder AS 字段序号, a.name AS 字段名, CASE WHEN COLUMNPROPERTY(a.id, a.name, 'IsIdentity') = 1 THEN '√' ELSE '' END AS 标识, ... 阅读全文
posted @ 2007-04-16 16:33 Caviare 阅读(210) 评论(0) 推荐(0)
反射应用-编译字符串获取计算结果
摘要:1using System; 2using System.Data; 3using System.Configuration; 4using System.Collections; 5using System.Web; 6using System.Web.Security; 7using System.Web.UI; 8using System.Web.UI.WebControls; 9usin... 阅读全文
posted @ 2007-04-06 17:10 Caviare 阅读(415) 评论(0) 推荐(0)