Can an .asp extension be redirected to an .aspx web application by
am 02.04.2008 01:59:06 von 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
Re: Can an .asp extension be redirected to an .aspx web application by the server in IIS 6
am 02.04.2008 15:18:13 von 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>
Re: Can an .asp extension be redirected to an .aspx web application
am 03.04.2008 01:24:20 von The Great Pawn Hunter
On Apr 2, 9:18=A0am, Alex Meleta wrote:
> 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. =A0We want to write a new .aspx
> T> application to replace it. =A0However, many other programs still
> T> reference the old .asp. =A0What I want to do is have the .aspx run
> T> instead of the .asp when these other applications run the .asp
> T> program. =A0Can the main.asp program be redirected to the .aspx
> T> program? =A0Hopefully by the server? =A0We 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