Fork me on GitHub
摘要: 一、建立存储过程 在MSSQL中的Northwind数据库中为employess表新建存储过程(作用按LastName进行模糊查询): CREATE PROCEDURE Employess_Sel @lastname nvarchar (20)AS select lastname ... 阅读全文
posted @ 2009-04-21 10:57 Zong_在路上 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 1.String.Compare(Session["CheckCode"].ToString(), tbxcheckcode.Text, true) == 0 string.Compare(s1,s2,true);//比较上面两个字符串是否相等,相等则返回0,不等则返回1.就是你所说的"字符串变量... 阅读全文
posted @ 2009-04-21 09:16 Zong_在路上 阅读(176) 评论(0) 推荐(0) 编辑