philzhou

导航

上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页

2011年4月18日 #

asp.net mvc combine with reporting service

摘要: reporting service 的配置:Reporting service 安装配置过程 1. 安装sql server 2008 enterprise edition,并安装reporting service 组件。 2. 配置reporting service 打开reporting service配置面板 配置相应属性(web服务url,报表管理器url) Reporting service 部署过程。 准备工作: 1. 安装sql server 2005/2008 reporting service。 2. 确保http://localhost:portno/reportserve 阅读全文

posted @ 2011-04-18 19:58 philzhou 阅读(661) 评论(0) 推荐(1) 编辑

2011年4月15日 #

【转载】C#中StreamWriter与BinaryWriter的区别兼谈编码。

摘要: 原文 参考: 1. 《C#高级编程》第六版 2. 文件流和数据流-C#程序设计教程 2010-7-11补充: 发现了一篇讲编码的深入而全面的好文章http://www.cnblogs.com/KevinYang/archive/2010/06/18/1760597.html 向文件写入非字符类型数据 当向文件中写入非字符类型的数据时,StreamWriter和BinaryWriter存在巨大差异。... 阅读全文

posted @ 2011-04-15 14:25 philzhou 阅读(685) 评论(0) 推荐(0) 编辑

2011年4月13日 #

转 How to Identify and Delete Duplicate SQL Server Records

摘要: 原文 Recently, I was asked to help someone clean up their database after they had double loaded an import file. The problem they were having in identifying and deleting the duplicate information was the fact that a timestamp is applied to each row of data as it is inserted into the table. While the re 阅读全文

posted @ 2011-04-13 16:50 philzhou 阅读(490) 评论(1) 推荐(0) 编辑

2011年3月23日 #

Web.Config HttpHandler 简介(转摘)

摘要: 原文 HttpHandler 很多时候,我们新建一个xxx.aspx页和xxx.aspx.cs文件,不过是为了实现一个很简单的功能,如:输出xmlDom,注销并跳转,并没有什么html的输出,很是麻烦,需要新建一个页,删除多余的html,并在page_load里面写处理代码。而使用HttpHandler就不需要这么麻烦了。 可以用任何符合公共语言规范 (CLS) 的语言编写自定义 HTTP 处理程... 阅读全文

posted @ 2011-03-23 15:36 philzhou 阅读(234) 评论(0) 推荐(0) 编辑

2011年3月18日 #

.Net DateTime.ToString 格式化输出 (转载)

摘要: 原文 虽然 System.DateTime 本身已经具有了不少现成的格式化输出,例如: ToLongDateString, ToShortTimeString, ToUniversalTime 等,但是却远远不能满足我们实际的需要,这就要用到了 DateTime.ToString,就要提到 DateTimeFormatInfo 了,见下面的 MSDN 说明: 格式字符 关联属性/说明 d Shor... 阅读全文

posted @ 2011-03-18 11:09 philzhou 阅读(491) 评论(0) 推荐(0) 编辑

2011年3月11日 #

(转)VPN中预共享对称密钥、非对称密钥、加密密钥、HMAC密钥

摘要: 原文 一、非对称密钥 目的:加密、验证原 理:两个大素数相乘得到一个更大的数(这步很简单),而反过来,从这个更大的数去反向推导原来的乘数,基本上一辈子的时间去计算都很难得到这个答案。这两 个素数一个是公钥,一个就是私钥。加密:peer之间共享公钥,A用B的公钥加密数据,发送给B,B用自己私钥解密。反之也如此。相 互的私钥永远不会公开,即使被攻击者窃听到公钥,也不会有危险。验证过程:即通常的说法---数字签名,过程如下:1、A用私 钥+身份信息2、实施加密算法3、发送加密的身份信息(通常这个加密的身份信息称为数字签名)和明文身份信息给对方B4、B使用 A的公钥解密数据——得到解密后代身份信息5、 阅读全文

posted @ 2011-03-11 11:29 philzhou 阅读(436) 评论(0) 推荐(0) 编辑

2011年3月7日 #

A Singleton Service Locator Pattern(转)

摘要: 原文 This is the third post of a series on the Service Locator pattern. In the first post I described how to create a basic service locator for your C# application, while in the second post I introduced lazy initialization of the services. We now add another piece to our puzzle, transforming the Servi 阅读全文

posted @ 2011-03-07 15:27 philzhou 阅读(383) 评论(0) 推荐(0) 编辑

Service Locator Pattern in C# with Lazy Initialization(转)

摘要: 原文 In my previous post Service Locator Pattern in C#: A Simple Example I introduced a fairly basic implementation of this pattern. In this post I will address one of the limitations of that implementation, introducing a form of lazy initialization. Defining Lazy InitializationLazy initialization imp 阅读全文

posted @ 2011-03-07 15:18 philzhou 阅读(570) 评论(0) 推荐(0) 编辑

Service Locator Pattern in C#: A Simple Example(转)

摘要: 原文 A Service Locator is a common design pattern that allows decoupling clients of services (described by a public interface) from the concrete class implementing those services. Martin Fowler has a gr... 阅读全文

posted @ 2011-03-07 14:53 philzhou 阅读(927) 评论(0) 推荐(0) 编辑

2011年3月2日 #

Raising Events, Event Handlers, and the Use of Delegates(转)

摘要: 原文来自http://www.csharp-corner.com/ Events When working with an IDE like Visual Studio, most events, particularly those involving Windows Forms applications, are nonlinear. That is, you might have to wait for a user to click a button or press a key to then respond to that event. In server applications 阅读全文

posted @ 2011-03-02 15:44 philzhou 阅读(228) 评论(1) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页