摘要:
WCF Application Report Last Week ,I read the book about WCF(Windows Communicate Foundation), and understand how to develop a application using it. First ,you must download .net3.0 framework from micro... 阅读全文
摘要:
网站登录验证码和小论坛程序[含源程序+数据库]有兴趣的朋友可以看看下载JumpyForum MD5加密方法: using System.Security; using System.Security.Principal; using System.Security.Cryptography; using System.Text; /**//**//**//// ... 阅读全文
摘要:
今天从网上看到的一个MD5加密方法 using System.Security; using System.Security.Principal; using System.Security.Cryptography; using System.Text; /**//**//**//// /// 加密函数 /// public stri... 阅读全文
摘要:
分页实现方法的性能比较 我们先给出几种主要的分页方法和核心语句,然后直接给出结论,有兴趣的读者可以看看后面的数据 几种常用存储过程分页方法 TopN方法 select Top(@PageSize) from TableName where ID Not IN (Select Top ((@PageIndex-1)*@PageSize) ID from Table Name whe... 阅读全文