C# 操作数据库,数据库表
摘要:下面是Sql Server 和 Access 操作数据库结构的常用Sql,希望对你有所帮助。 内容由海娃整理,不正确与不完整之处还请提出,谢谢。 新建表: create table [表名] ( [自动编号字段] int IDENTITY (1,1) PRIMARY KEY , [字段1] nVarChar(50) default '默认值' null , [字段2] ntext null , [...
阅读全文
实现MSN弹出窗口特效示例代码
摘要:<html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server"> <title>IT知道网</title> <SCRIPT language=JavaScript>... <!-- function CLASS_MSN_MESSAGE(id,width,height,...
阅读全文
加密和解密运算代码
摘要:using System;using System.Security.Cryptography;using System.Text;namespace AttendService{ public static class DESEncrypt { #region ========加密===== private static string txtKey = "PatrickpanP="; priva...
阅读全文