Can an .asp extension be redirected to an .aspx web application bythe server in IIS 6

  • Thread starter The Great Pawn Hunter
  • Start date
T

The Great Pawn Hunter

Hi,
We have an old .asp application. We want to write a new .aspx
application to replace it. However, many other programs still
reference the old .asp. What I want to do is have the .aspx run
instead of the .asp when these other applications run the .asp
program. Can the main.asp program be redirected to the .aspx
program? Hopefully by the server? We are running IIS 6.

Manny
 
A

Alex Meleta

Hi

Guess <% response.redirect "where.apsx?" & Request.QueryString %> can be
the way for both of your reqs

Regards,
Alex Meleta
[Tech Blog: http://devkids.blogspot.com]

T> Hi,
T> We have an old .asp application. We want to write a new .aspx
T> application to replace it. However, many other programs still
T> reference the old .asp. What I want to do is have the .aspx run
T> instead of the .asp when these other applications run the .asp
T> program. Can the main.asp program be redirected to the .aspx
T> program? Hopefully by the server? We are running IIS 6.
T> Manny
T>
 
T

The Great Pawn Hunter

Hi

Guess <% response.redirect "where.apsx?" & Request.QueryString %> can be
the way for both of your reqs

Regards,
Alex Meleta
[Tech Blog:http://devkids.blogspot.com]

T> Hi,
T> We have an old .asp application.  We want to write a new .aspx
T> application to replace it.  However, many other programs still
T> reference the old .asp.  What I want to do is have the .aspx run
T> instead of the .asp when these other applications run the .asp
T> program.  Can the main.asp program be redirected to the .aspx
T> program?  Hopefully by the server?  We are running IIS 6.
T> Manny
T>

Thanks Alex,

However, I found there is a redirect in IIS that does the trick It is
good
to have options though.

Thanks
 

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