philzhou

导航

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

2011年3月1日 #

Use Data Caching Techniques to Boost Performance and Ensure Synchronization(转)

摘要: 原文地址 Level of Difficulty 1 2 3 SUMMARY Performance is an important concern for any application, but becomes critical when the app is a Web Service accessed by thousands of clients simultaneously. One hardware approach to distributing Web Services requests evenly is a Web farm consisting of multiple 阅读全文

posted @ 2011-03-01 17:55 philzhou 阅读(298) 评论(0) 推荐(0) 编辑

EventHandler 泛型委托(转msdn)

摘要: 表示将处理事件的方法。泛型类型参数指定事件所生成的事件数据的类型。 命名空间:System程序集:mscorlib(在 mscorlib.dll 中)[SerializableAttribute] public delegate void EventHandler<TEventArgs> ( Object sender, TEventArgs e) where TEventArgs : Event... 阅读全文

posted @ 2011-03-01 10:36 philzhou 阅读(1078) 评论(0) 推荐(0) 编辑

2011年2月23日 #

使用 AsyncCallback 处理异步调用

摘要: 参考文章 原文 异步调用可以避免主线程受工作线程阻塞,即工作线程执行的过程中,主线程依然可以往下运行,不必等待工作线程完成。下面是一个简单的异步调用加法函数的例子。using System;using System.Threading;// the namespace for AsyncResult.using System.Runtime.Remoting.Messaging; namespace AsyncCallback{ // Delegate for add method. public delegate int TwoOperands(int a,int b); class Pro 阅读全文

posted @ 2011-02-23 14:39 philzhou 阅读(7543) 评论(1) 推荐(3) 编辑

2011年2月21日 #

使用工作流的一个IT服务管理系统

摘要: 目的:分角色的流程化的IT服务请求单处理系统,一个IT服务单会经过设计好的流程节点,以及相应的角色来处理。 流程图: 思路: IT服务流程中每个节点与某一角色相关联,而角色又与某一个IT服务人员关联,这样可以随时调整IT服务人员的角色,以及角色的责任节点,让系统更具灵活性。 自IT服务单的创建开始,一个IT服务的流程也随之展开,当进入一个节点时,创建一个书签,并为该节点的角色生成一条待办记录,... 阅读全文

posted @ 2011-02-21 16:08 philzhou 阅读(590) 评论(0) 推荐(0) 编辑

2011年1月26日 #

win7 提示 由于无法验证发布者,windows阻止控件安装 解决办法

摘要: 对于一些企业内部使用的OA产品,常常会需要安装一些ActiveX插件,而安装的时候经常会遇到由于无法验证发布者,windows阻止控件安装的问题,在网上有些解决办法就是,将internet的ActiveX方面的安全设置到最低标准,那个可能适合外网网站的情况,但是内网的网站依然会上述报错,于是把公司OA网站设为内部网站,然后调整intranet的ActiveX的安全设置,就OK了。 阅读全文

posted @ 2011-01-26 10:13 philzhou 阅读(50146) 评论(3) 推荐(0) 编辑

2011年1月18日 #

转摘:Aspnet mvc Html.Checkbox 处理

摘要: This post will explain how to get the value of a checkbox when a form is posted within the world of ASP.NET MVC. This post will explain this approach by first presenting a common problem and then showing you the recommended solution. You can just jump to the solution by clicking here.The Common Prob 阅读全文

posted @ 2011-01-18 17:34 philzhou 阅读(3271) 评论(2) 推荐(2) 编辑

2011年1月13日 #

metasploit

摘要: 下面的关于计算机内存组织形式的解释,可以很好的解释exploit的原理。2.1 Memory organizationThe basic exploitation techniques can be methodically categorized, like any other technical issue. Before going further, however, the reader must be aware of the basic process of memory organization [ref 2]. A process running in memory has t 阅读全文

posted @ 2011-01-13 16:40 philzhou 阅读(349) 评论(0) 推荐(0) 编辑

C# 内存溢出示例

摘要: static unsafevoid Main(string[] args) { Console.WriteLine(Change_Result()); Console.ReadLine(); } staticunsafeint Change_Result() { int i =0; //变量result,默认的返回值 int result =123; //申请一段栈内存,大小可随意设置 int* p =stackallocint[1]; //从当前栈地址开始向下查找与函数返回值相匹配的地址,一旦匹配则修改为10000 while (true) { if (p[++i] ==123) { p 阅读全文

posted @ 2011-01-13 16:38 philzhou 阅读(2948) 评论(1) 推荐(0) 编辑

2011年1月12日 #

sql server 数据类型以及SqlParameter赋值时遇到的问题

摘要: Unicode 规格通过采用两个字节编码每个字符使这个问题迎刃而解。转换最通用商业语言的单一规格具有足够多的 2 字节的模式 (65,536)。因为所有的 Unicode 系统均一致地采用同样的位模式来代表所有的字符,所以当从一个系统转到另一个系统时,将不会存在未正确转换字符的问题。通过在整个系统中使用 Unicode 数据类型,可尽量减少字符转换问题。 Unicode 数据使用 SQL Server 中的 nchar、varchar 和 ntext 数据类型进行存储。 bigint 从 -2^63 (-9223372036854775808) 到 2^63-1 (92233720368547 阅读全文

posted @ 2011-01-12 10:58 philzhou 阅读(761) 评论(1) 推荐(0) 编辑

2010年12月31日 #

log4net 的使用

摘要: 常规的配置如下先在web.config中的<configuration>节点下添加如下配置:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><configSections> <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/></co 阅读全文

posted @ 2010-12-31 20:43 philzhou 阅读(430) 评论(1) 推荐(1) 编辑

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