08 2007 档案

摘要:Microsoft 发布了许多的ajax功能组件,能有效地加速开发进度,这个组件在很多地方都可以用,实现的效果也不错! 阅读全文
posted @ 2007-08-24 16:08 海底的鱼 阅读(563) 评论(0) 推荐(0)
摘要:using System; using System.Text; namespace Caceolod { /// /// Chs2Spell的摘要说明 /// 1将一串汉字转化为拼音 /// 2单个转化为拼音 /// 3得到单个汉字拼音的首字母 /// publ... 阅读全文
posted @ 2007-08-24 13:22 海底的鱼 阅读(635) 评论(0) 推荐(0)
摘要:在C#中 验证一个 E-Mail 格式 RegexEmailRex = new Regex( @" \w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)* " ,RegexOptions.IgnoreCase); if ( ! EmailRex.IsM... 阅读全文
posted @ 2007-08-24 10:07 海底的鱼 阅读(1146) 评论(0) 推荐(0)
摘要:function CheckChange(value) { alert(value); } var object = document.getElementById( " PwdPromptMsg " ); if (value == " 其他 " ) { object.styl... 阅读全文
posted @ 2007-08-23 15:51 海底的鱼 阅读(340) 评论(0) 推荐(0)
摘要:提示问题必须在2-50个字符内" Display ="None" > function CheckPwdPrompt(src,args) { var obj = document.getElementById( " PwdPromptMsg " ); if (obj.styl... 阅读全文
posted @ 2007-08-23 15:42 海底的鱼 阅读(704) 评论(0) 推荐(0)
摘要:删除利用asp.net membership来创建的用户 阅读全文
posted @ 2007-08-07 12:43 海底的鱼 阅读(437) 评论(0) 推荐(0)
摘要:由于.net中的profile在用户的登陆前后不能保存住信息,所以我们利用对象序列化,将登陆前的Profile中的信息保存在Cookie中,然后在登陆后再把Cookie赋值给Profile,这样就避免了信息不能保存的问题,又利用了Profile的优点! 阅读全文
posted @ 2007-08-03 14:04 海底的鱼 阅读(2189) 评论(2) 推荐(2)
摘要:using System;using System.Collections.Generic;using System.Text;using System.Text.RegularExpressions; namespace RegTestC{ class Program { static void ... 阅读全文
posted @ 2007-08-03 12:50 海底的鱼 阅读(2312) 评论(1) 推荐(0)