前往IT大V的晋级之道

YY而已,不必当真

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2007年5月29日

摘要: 一个完整的HTTP请求在ASP.NET 的处理过程如下: HttpRequest ---> inetinfo.exe --->ASPNET_ISAPI.dll --->Http Pipeline ---> ASPNET_WP.exe --->HttpRuntime ---> HttpApplication Factory ---> HttpApplication ---> HttpModule ... 阅读全文
posted @ 2007-05-29 11:23 岩山藤 阅读(190) 评论(0) 推荐(0)

摘要: 问题:产生一个int数组,长度为100,并向其中随机插入1-100,并且不能重复。对上面生成的数组排序,需要支持升序、降序两种顺序 public class RndNumber { int[] aRnd = null; int iMax; int iMin; /// /// Creates a new instan... 阅读全文
posted @ 2007-05-29 09:54 岩山藤 阅读(214) 评论(0) 推荐(0)