摘要: 常用js注册验证 阅读全文
posted @ 2007-06-11 15:48 roboth 阅读(1178) 评论(1) 推荐(0) 编辑
摘要: 1:Repeater,DataList,DataGrid,GridView都是用来显示数据的WebControl,它们支持Event Bubble【事件冒泡】,它们中的子控件的事件可以上升到本身的事件,通过一个子例程和事件关联。采用的方法是OnItemCommand. 阅读全文
posted @ 2007-06-10 14:33 roboth 阅读(498) 评论(1) 推荐(0) 编辑
摘要: MD5 的全称是Message-Digest Algorithm 5(信息-摘要算法),在90 年代初由MIT Laboratory for Computer Science和RSA Data Security Inc的Ronald L. Rivest开发出来,经 MD2、MD3 和MD4 发展而来。它的作用是让大容量信息在用数字签名软件签署私人密匙 前被"压缩"成一种保密的格式(就是把一个任意长度的字节串变换成一定长的大整数)。不 管是MD2、MD4 还是MD5,它们都需要获得一个随机长度的信息并产生一个128 位的信 息摘要。虽然这些算法的结构或多或少有些相似,但MD2 的设计与MD4 和MD5 完全不 同,那是因为MD2是为8位机器做过设计优化的,而MD4和MD5却是面向32位的电脑。 阅读全文
posted @ 2007-05-31 11:56 roboth 阅读(647) 评论(0) 推荐(0) 编辑
摘要: /* Released Date:2007-5-30 ProcName:UP_GetRecordByPage */ --check UP_GetRecordByPage if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[UP_GetRecordByPage]') and OBJECTPRO... 阅读全文
posted @ 2007-05-30 15:53 roboth 阅读(427) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Web.UI;using System.Web.Security;using System.Web;namespace Gtide.ShoppingMall.Common{ public class Ticket { p... 阅读全文
posted @ 2007-05-23 19:51 roboth 阅读(285) 评论(0) 推荐(0) 编辑