How to intercept a post to asp page?

J

jeff29_b

I have customers posting data to an asp page. I would like to respond
to their request from an asp.net page without doing a response.redirect
from the asp page. Is there some way to do a server.transfer from asp
to asp.net or intercept the request for the page in iis and handle it
in .net with out our users changing their URLs. The complicated part
is that this will only be for certain asp pages so it won't be safe to
do this across the board for every asp page.
 
B

Bruce Barker

you need a url rewriting isapi filter. these must be written in c++, but
several examples exist.

-- bruce (sqlwork.com)
 
G

gerry

or just setup the IIS App Mappings for this site to have asp.net handle .asp
requests
you can then do your rewriting from within asp.net either in a HttpModule or
right in your Global.ascx
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top