卡西卡的小寶庫
寶庫寶庫寶庫
Showing posts with label IConfigurationSectionHandler. Show all posts
Showing posts with label IConfigurationSectionHandler. Show all posts

作用:把 http://xxx/2007/10/03.aspx 轉到 http://xxx/list.aspx?y=2007&m=10&d=03

重點:HttpContext.RewritePath

 

URL=http://msdn2.microsoft.com/en-us/library/ms972974.aspx

by Scott Mitchell
Summary: Examines how to perform dynamic URL rewriting with Microsoft ASP.NET. URL rewriting is the process of intercepting an incoming Web request and automatically redirecting it to a different URL. Discusses the various techniques for implementing URL rewriting, and examines real-world scenarios of URL rewriting.

URL=http://www.codeproject.com/aspnet/URLRewriter.asp

By Richard Birkby
Demonstrates the use of regular expression-based URL Rewriting, similar to mod_rewrite with ASP.NET

  • Application_BeginRequest
  • Configuration Section Handlers

 

簡介:The NeatUpload ™ ASP.NET component allows  developers to stream uploaded files to storage (filesystem or database) and allows users to monitor upload progress.

URL=http://www.brettle.com/neatupload
Manual=http://www.brettle.com/NeatUpload-1.2/docs/Manual.html
DEMO=http://klchang3:99/demo/20070929A-Upload/WebForm1.aspx
CODE=D:\Project\_core2\NeatUpload\NeatUpload-1.2.24

  • UploadHttpModule.cs
    IHttpModule
  • ConfigSectionHandler.cs, Config.cs
    IConfigurationSectionHandler
  • DecoratedWorkerRequest.cs
    HttpWorkerRequest
  • Web.config
  • WebForm1.aspx
  • WebForm1.aspx.cs

 

類似的還有……

  • SlickUpload provides scalable ASP.NET upload handling with a rich progress and status information display. SlickUpload intercepts upload requests before ASP.NET can process them, enabling it to stream the files directly to the filesystem or a database with little overhead. For user feedback, SlickUpload provides information that can be displayed to the user in real time using AJAX techniques.
  • 炫Max - [ASP.NET 2.0] 上传进度模块\本模块可以分成两部分,一部分负责监测上传进度,另一部分负责显示。