2004年12月10日

身份证验证 ZT

摘要: alter function dbo.IDTrue--验证十八位身份证是否正确( @ID varchar(18))returns bitas begin--验证格式是否正确declare @RES bitdeclare @W table (rn int,val int)insert into @W(rn,val)select 1,7union select 2,9union select 3,10union select 4,5union select 5,8union select 6,4union select 7,2union select 8,1union select 9,6unio 阅读全文

posted @ 2004-12-10 16:31 老代哥哥 阅读(266) 评论(0) 推荐(0) 编辑

C#之消息队列的简要说明----自学笔记

摘要: using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using System.Data;using System.Messaging ;using System.Threading ;namespace WinMsmq{/// <summary>/// Form1 的摘要说明。/// </summary>public class Form1 : System.Windows.Forms.Form{ 阅读全文

posted @ 2004-12-10 15:00 老代哥哥 阅读(235) 评论(0) 推荐(0) 编辑

ZT :MD5算法之T_SQL实现

摘要: /***************************************************************************** * Name: T-SQL MD5算法实现 * Author: Rambo Qian * Create Date: 2003-04-10 * Last Modified by: Rambo Qian * Last Update Date: 2003-04-16 * Version: V1.0.00 *********************************************************************** 阅读全文

posted @ 2004-12-10 14:57 老代哥哥 阅读(160) 评论(0) 推荐(0) 编辑

导航