| Sample HttpHandler Code (2 replies) |
| ASPFriends.com 'aspnghttphandlers' list |
| This message, which was originally sent to "aspngbeta", has been copied to "aspnghttphandlers" mailing list by the List Master Hello, Does anyone have a sample code for a custom HttpHandler class? Upon compiling the following: Public Class MyHttpHandler 20 Implements System.Web.HttpHandler 20 Public Readonly Property IsReusable() As Boolean 20 Get 20 Return True 20 End Get 20 End Property 20 09 Pu... |
|
| Request Handlers, Executing Handler AND Getting requested resource (5 replies, VIP) |
| ASPFriends.com 'aspnghttphandlers' list |
| This message, which was originally sent to "aspngbeta", has been moved to "aspnghttphandlers" mailing list by the List Master Hello, I thought of using Request Handlers to be able execute some pre processing code whenever a given page type is requested (ie .aspx). It seems that if I implement a handler for all .aspx files in a web, the handler will execute, but the requested .aspx will not. I am l... |
|
| Request procesor ... (5 replies) |
| ASPFriends.com 'aspnghttphandlers' list |
| I want to implememt the following: 1. when a user request let's say http://mysite.com/somefolder/page , my handler must search for a directory called page, and then for a page called page.aspx, and then for a page called page.asp and finally for a page named page.html or page.htm (maybe even a configurable feature for specifying order of seacrh is welcomed) 2. if my root of site is located at c:\i... |
|
| Hosting ASP.NET in a command line app (2 replies) |
| ASPFriends.com 'aspnghttphandlers' list |
| I've just tried (and succeeded) in hosting ASP.NET in a command line app using code that has been previously provided by Scott G. It's all very cool. However, to get it working in beta 2 I had to copy the assembly into a subdirectory called bin. Without it, fusion.dll can't resolve the assembly. Is there a way I can get ApplicationHost.CreateApplicationHost to not look for the assembly in a bin su... |
|
| Trouble with HttpHandlers section in web.config (3 replies) |
| ASPFriends.com 'aspnghttphandlers' list |
| Moved from [aspngvs] to [aspnghttphandlers] by TrollHunter This is a multi part message in MIME format. NextPart 001 01C14545.77296220 Content Type: text/plain; charset "us ascii" Content Transfer Encoding: quoted printable I am trying to catch requests for *.exe files or possibly requests for a certain file path (e.g. */downloads/*). Here's my problem: If I use: add verb 3D"*" path 3D"*.exe" type... |
|
| How to handle all extensions (6 replies) |
| ASPFriends.com 'aspnghttphandlers' list |
| I'd like to make my httphandler customize the processing of all requests within a folder. The only way I found was to make the folder an application in IIS and to let the aspnet isapi.dll handle the .* extension. (Removing all other isapi extensions) This makes me lose my session content when redirected from the application above. Anyone knows if this could be done without losing session content? ... |
|