Would you know how to do a Server.Transfer but in a way that would end up
calling my secure https page as opposed to my http one?
For example, I need to run:
Server.Transer("~/users/mypage.aspx")
and the result would be:
https://www.mysite.com/users/mypage.aspx
and not
http://www.mysite.com/users/mypage.aspx
I'm asking because I have a local version of my site that I would like to
test before updating. This way I'm trying to stick with realative paths as
opposed to full url's.
Thanks again,
Chris.
"Keith Patrick" <richard_keith_patrick@nospam.hotmail.com> wrote in message
news:OCppsIdGFHA.2356@TK2MSFTNGP12.phx.gbl...[color=blue]
> #1 would ultimately be faster because you can only use relative paths with
> Server.Transfer, and Server.Transfer is more efficient that
> Response.Redirect.
>
> But if you are only asking in terms of Response.Redirect, then I'm not
> sure.
>
>
> "ChrisN" <cnewald@hotmail.com> wrote in message
> news:uPPceFdGFHA.3376@TK2MSFTNGP14.phx.gbl...[color=green]
>> Hi there,
>>
>> Which way of calling pages from within your application is better (ie
>> faster or more efficient)?
>>
>> 1. "~/users/mypage.aspx?"
>> 2. "http://www.mysite.com/users/mypage.aspx"
>>
>> Perhaps someone knows of an article or something.
>>
>> Thanks!
>> Chris.
>>
>>[/color]
>
>[/color]