20
2012
05

[转载]mssql 生成‘批量Insert数据的sql语句’的存储过程

(含中文插入处理)
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[spGenInsertSQLHan]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[spGenInsertSQLHan]
GO

SET QUOTED_IDENTIFIER ON
GO
...

20
2012
05

js格式化显示当前时间

<script type="text/javascript">
//    function settime() {
//        var mytime = document.getElementByIdx_x_x("mytime");
...

20
2012
05

C#中npoi操作Excel[版本1.2.1读写2003格式]

//npoi操作Exce的测试(你的Excel文件必须在运行程序的电脑(服务器)上,网站中尤其要注意这点)

//先引用npoi的dll文件

//用到的dll下载地址: npoidll.zip
...

20
2012
05

.net一般处理程序ashx生成验证码

//第一种

using System;
using System.Collections.Generic;
using System.Web;
using System.Drawing;
using System.Drawing.Imaging;
using System.Web.SessionState;

...

20
2012
05

C#对文件的字节加密/解密-可逆

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
...

20
2012
05

mssql express profiler 下载地址

 

 

http://code.google.com/p/sqlexpressprofiler/downloads/detail?name=SqlExpressProfiler-1.2.1708.7.zip

...

20
2012
05

ASP.NET 的进程帐户必须具有对 IIS 元数据库(如 IIS://servername/W3SVC)的读访问权_解决办法

iis运行.net网站时,报错。

解决方法:
 

开始->程序->Microsoft .NET Framework SDK v2.0->SDK Command Prompt
输入
aspnet_regiis  -i 

Enter

...

20
2012
05

EXCEL函数大全

 

下载使用文档:EXCEL_使用大全.zip

20
2012
05

c#对ftp进行操作

 FtpClient类下载 :FtpClient.zip

 

客户端使用:

第一种使用WebClient

...

20
2012
05

Adobe Flash Professional CS5挂起挂起,安装不成功

最近在安装 Adobe Flash Professional  CS5 的时候在打开安装文件时会出现如下提示:“安装程序检测到计算机重新启动操作可能处于挂起状态。建议您退出安装程序,重新启动并重试。”这时如果你直接重新启动系统再安装软件依然会出现上述提示。这应该是安装 CS5 系列软件的通病,测试的系统为32位 win7 系统,本文就针对这个问题说下解决方案。
...