摘要:
两个产生随机密码函数: 函数一: function randomPassword($passwordLength = 8) { $str = "abcefghijklmnopqrstuvwxyz1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ"; if($passwordLength > strlen($str)) $passwordLeng... 阅读全文
摘要:
开始时写的代码: 无标题文档 第一项 第二项 第三项 第四项 运行后不论是在IE里还是FF里都显示出右边有一段空格,但以上代码依个人经验没有任何错误,调试了二个小时还是不知道原因,查了一下google,结果是哪里搞的鬼了呢? 第一项 第二项 第三项 第四项 ... 阅读全文
摘要:
RaisePostBackEvent(string eventArgument) 说明:回调方法 参数:eventArgument,返回客户端回调参数值 Page.ClientScript.GetPostBackEventReference(control,string) 说明:客户端指定页面control控件中使用string字符串,以便回调回服务器 参数:control,实现PostBack... 阅读全文
摘要:
通常语法: EXECUTE [@return_value=]存储过程名 [[参数名(@Name)=],[参数名(@Name)=]....] 其中:中不能包含函数 例: Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->execute proce... 阅读全文
摘要:
Mode属性:控制应用程序的默认身份验证模式 选项 说明 Windows 将 Windows 验证指定为默认的身份验证模式 Forms ... 阅读全文
摘要:
名称 说明 name providers名称 type 类型,用SQL是为:System.Web.Security.SQLMembershipProvider connectionStringName 连接字符串名称 enablePasswordRetrieval ... 阅读全文
摘要:
.net中: DropDownList,ListBox,CheckBoxList,RodioButtonList等控件的.DataSource属性可使用 ListItemCollection集合,注意:绑定时须指定DataValueField,DataTextField属性的值! 不指定字段后value和Text的值都为Text. Code highlighting produced by ... 阅读全文
摘要:
项目中启用了asp.net2.0自带的权限管理 采用Context.User.Indetity只能取得当前用户名 根据UserName取UserId(GUID)的方法: Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->Guid userId... 阅读全文
摘要:
c# Java c# Java c# Java c# Java abstract ... 阅读全文
摘要:
初始化类extendString后执行,如: var test=new extendString(); extendString.isEmail("value"); 如嫌麻烦可将extendString改成String后可直接在字符串中引用: 如document.getElementById("testId").value.isEmail() function extendString(){ }... 阅读全文