上一页 1 ··· 6 7 8 9 10
摘要: http://www.spasvo.com/news/html/2012103195259.html# 阅读全文
posted @ 2012-12-12 15:57 Mark1997 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 例子:dateadd则是算出在已知时间的基础上再加多少天是几月几日.select dateadd(year,10,getdate())select dateadd(month,10,getdate())select dateadd(day,10,getdate()) DateAdd函数 返回 返回包含一个日期的 Variant (Date),这一日期还加上了一段时间间隔。 语法 DateAdd(interval, number, date) DateAdd 函数语法中有下列命名参数: 部分 描述 interval 必要。字符串表达式,是所要加上去的时间间隔。 number 必要。... 阅读全文
posted @ 2012-12-04 20:11 Mark1997 阅读(353) 评论(0) 推荐(0) 编辑
摘要: http://www.ltesting.net/ceshi/ceshijishu/xncs/2012/1129/205758.html 阅读全文
posted @ 2012-12-04 19:47 Mark1997 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 1、TRUNCATE在各种表上无论是大的还是小的都非常快。如果有ROLLBACK命令DELETE将被撤销,而TRUNCATE则不会被撤销。2、TRUNCATE是一个DDL语言,向其他所有的DDL语言一样,他将被隐式提交,不能对TRUNCATE使用ROLLBACK命令。3、TRUNCATE将重新设置高水平线和所有的索引。在对整个表和索引进行完全浏览时,经过TRUNCATE操作后的表比DELETE操作后的表要快得多。4、TRUNCATE不能触发任何DELETE触发器。5、不能授予任何人清空他人的表的权限。6、当表被清空后表和表的索引讲重新设置成初始大小,而delete则不能。7、不能清空父表。 阅读全文
posted @ 2012-12-04 18:33 Mark1997 阅读(778) 评论(0) 推荐(0) 编辑
摘要: 前台代码:<Columns> <asp:TemplateField HeaderText="选择"> <HeaderStyle HorizontalAlign="Center" Height="25px" Width="45px" /> <ItemTemplate> <asp:CheckBox ID="ckb" runat="server" /> </ItemTemplate> </asp:Temp 阅读全文
posted @ 2012-11-30 21:09 Mark1997 阅读(1834) 评论(0) 推荐(0) 编辑
摘要: http://kb.cnblogs.com/page/91514/ 阅读全文
posted @ 2012-11-19 20:32 Mark1997 阅读(461) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls.WebParts;using System.Web.UI.HtmlControls;using System.Drawing;using System.Drawing.Imaging;using System.Drawing.Drawing2D 阅读全文
posted @ 2012-11-07 12:02 Mark1997 阅读(695) 评论(1) 推荐(0) 编辑
摘要: //创建一个MD5加密字符类View Code //MD5public class DESEncrypt{ public static string Encrypt(string strText){ byte [] data=System.Text.Encoding.Unicode.GetBytes (strText.toCharArray());System.Security.Cryptography.MD5 MD5=NEW System.Security.CryptoServiceProvider();byte [] result=MD5.ComputeHash(da... 阅读全文
posted @ 2012-11-07 11:13 Mark1997 阅读(465) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10