03 2010 档案

摘要:正则表达式之道  正则表达式  原著:Steve Mansour  sman@scruznet.com  Revised: June 5, 1999  (copied by jm /at/ jmason.org from , after the original disappeared! )  翻译:Neo Lee  neo.lee@gmail.com  2004年10月16日  英文版原文  译... 阅读全文
posted @ 2010-03-04 13:14 】Richard【 阅读(1157) 评论(1) 推荐(1)
摘要:.ashx 文件用于写web handler的。其实就是带HTML和C#的混合文件。当然你完全可以用.aspx 的文件后缀。使用.ashx 可以让你专注于编程而不用管相关的WEB技术。.ashx必须包含IsReusable. 如下例所示<%@ WebHandler Language="C#" Class="getImage" %>using System;using System.Co... 阅读全文
posted @ 2010-03-01 10:38 】Richard【 阅读(386) 评论(0) 推荐(0)
摘要:using System;using System.Collections.Generic;using System.Text;using System.IO;using System.Drawing;using System.Drawing.Imaging;using System.Drawing.Drawing2D;namespace cj.Tools{ /**/ ///<summary... 阅读全文
posted @ 2010-03-01 10:30 】Richard【 阅读(391) 评论(0) 推荐(0)