You could do this very easily, but I'm not sure if this is the best way, there are ways to configure IIS to do this for you and would not have the delay for...
Bill Andreozzi
billandr@...
Mar 28, 2003 2:00 am
4
... Dennis' request is an excellent example of what now can be done in C# or VB.NET very easily, which previously required ISAPI filters written in C++ (and...
Below is some sample code for trying this out. It should be enough to get you going. While the code below could go into a compiled HttpModule and then be ...
Marc has a great way to allow Dennis' extension-less virtual URL to still be processed by ASP.NET. See below. PS: in the article previously linked by someone...
... Thanks for the help and suggestions. After I read through some explainations about how this all works, I figured I'd need to use the .aspx extension on a...
I am writing a handler factory and need to access the session. There seems to be a distinction between a project accessed through a virtual directory and one...
hello friends, Presently I am working on HTTPHandlers I have some doubts.. 1.How to include the HTML Files in the HTTPHandler like <!-- include ....-->...
Glad to hear you are getting your feet wet!! This is a pretty good sample of a basic handler. You can associate a Handler with an extension, such as *.sanv......
toddc@...
Aug 19, 2003 4:15 pm
12
I think maybe he just wants to map the .html file extension to the ASP.NET engine? If so, you will need to go into IIS to your vdir properties, go to the...
Eric J. Smith
ejsmith@...
Aug 19, 2003 5:14 pm
13
[His full question didnt come through (see bottom for fill message), the HTML comment from the include statement confused YahooGroups, or his email client (I...
hi, I tried what the soln u have given.. But the problem is, for reading the file It ask for physical location of the file but I want to give the virtual...
hi smith, When the user post the request for some some information say book details with ISBN NO. with my own extension say http:/localhost/ISBN100.ashx My...
In my application I list files for users to download. Each has a unique extension that my handler is configured to deal with. When a user clicks on one of...
Chris
chris@...
Oct 1, 2003 4:32 am
17
I'm looking for some good references / tutorials / examples of using HttpHandlers / HttpModules. Anyone know of some good ones? Jeff...
I recommend Microsoft community starter kit to you. It's good reference using HTTP Module. Check it on...
이동범
funnyfox@...
Nov 18, 2003 5:33 am
19
Another good reference, not just for ASP.NET HttpHandlers but for everything .NET, is HotBlue. Here's the article links for HttpHandlers and Modules: ...
Hello to everyone I use Server. Transfer () to execute another page in my project. A problem I have is I can't execute pages in another projects. It says...
I'm developing a web app and need to retrieve data updates from the server. The client requirement is to use C#. All I need to do is to write a C# class that...