代码改变世界

阅读排行榜

SSIS包部署

2014-09-04 14:57 by Carl Xing, 779 阅读, 收藏,
摘要: 1、ssis包部署可以生成部署文件,部署到sqlserver,再通过sqlserver计划作业来执行。2、也可以通过shell来调用dtsx ,通过windows计划任务来定时调用exe。不论是哪种方式服务端都需要安装sqlserver integration service. 安装了integra... 阅读全文

自定义ExpressionBuilder

2015-05-06 23:05 by Carl Xing, 632 阅读, 收藏,
摘要: ExpressionBuilder的常见说明见https://msdn.microsoft.com/zh-cn/library/System.Web.Compilation.ExpressionBuilder(v=vs.80).aspx下面贴代码:编写自定义ExpressionBuilder用于翻译... 阅读全文

将网页保存成图片

2011-12-01 16:30 by Carl Xing, 556 阅读, 收藏,
摘要: 新建一个win Form应用程序using System;using System.Drawing;using System.Windows.Forms;namespace Snowdream.Sample.WebpageSnapshot{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } /// <summary> /// 按钮按下事件处理函数 /// </summary... 阅读全文

表变量当做参数传递

2017-11-02 11:05 by Carl Xing, 481 阅读, 收藏,
摘要: 在SQL Server 2008中,你可以将表变量作为参数传入存储过程。但是临时表不行。在SQL Server 2000和2005中表变量也不行。 阅读全文

SoapHeader的使用

2013-04-23 15:52 by Carl Xing, 480 阅读, 收藏,
摘要: 自定义类继承SoapHeader用户在webservice表头传递凭据using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Services.Protocols;namespace FormsAuth.WebService{ public class SoapHeaderCredential:SoapHeader { private string strUserName = string.Empty; privat... 阅读全文
上一页 1 2 3 4 5 6 ··· 9 下一页