摘要:
在SQL Server 2005下自带的函数HashBytes() ,此函数是微软在SQL Server 2005中提供的,HashBytes() 函数的返回结果是VarBinary类型(以 0x 开头 16 进制形式的二进制数据)。通常情况下,我们需要的都是字符串型的数据,直接存入varchar字 阅读全文
摘要:
RSA算法代码: using System; using System.Collections.Generic; using System.Text; using System.IO; using System.Security.Cryptography; namespace RSA.Class { 阅读全文
摘要:
第一步: 如果是XP系统: 1.开始——运行——输入cmd——回车——在打开的窗口中输入net stop WuAuServ 2.开始——运行——输入%windir% 3.在打开的窗口中有个文件夹叫SoftwareDistribution,把它重命名为SDold 4.开始——运行——输入cmd——回车 阅读全文
摘要:
一、基础 1、说明:创建数据库CREATE DATABASE database-name 2、说明:删除数据库drop database dbname3、说明:备份sql server--- 创建 备份数据的 deviceUSE masterEXEC sp_addumpdevice 'disk', 阅读全文
摘要:
//保存目录 string dir = "/upload/user/head"; //站点文件目录 string fileDir = HttpContext.Current.Server.MapPath("~" + dir); //文件名称 string fileName = "headdemo" 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Xml;using Newtonsoft;//此方法需单独下载namespace ThumbsLotteryTi... 阅读全文
摘要:
DECLARE @idoc intDECLARE @doc varchar(1000)SET @doc =' '--Create an internal representation of the XML document.EXEC sp_x... 阅读全文
摘要:
第一种说明:我看过这样一篇文章,如下在SQL Server2005中,微软延续了 2000中一个特性(即支持XML类型的数据),并加强了对XML 数据列、XML变量以及XML索引的支持。在数据库中存储XML数据是一个很出色的特征。对于大部分的数据处理需求来讲,将XML数据格式化为其它关联数据是... 阅读全文
摘要:
using System;using System.Linq;using System.Collections.Generic;namespace microstore{ public interface IPerson { string FirstName ... 阅读全文
摘要:
当我把编译好的程序托管到IIS下后,访问时出现了以下问题,服务器环境是IIS 7,操作系统 Windows server 2008 r2 64位。出现上述问题的原因是,所加载的程序集中有32位的,也有64位的,IIS 7 程序池 在Windows下.Net FrameWork是64位的,要想正确使用... 阅读全文