Address bar not showing current page....

SteveoAtilla

Regular
Joined
Dec 22, 2004
Messages
80
Location
The Frozen Tundra
Greetings all!

I am in the middle of developing my first ASP.NET application (with VB for the codebehind pages).

I am using the Server.Transfer method to change from one page to another, instead of the Server.Redirect. I wanted to make less work for myself when moving the application from my test webserver to the production server, and didn't want to have to change the path and/or IP address all over the application.

What I am seeing now, however, is that the address bar does not show the current page, but rather shows the page that had been displayed previously. The address bar is updated on a PostBack event, but otherwise shows the previous page address :confused: .

Any clues?

Thanks,

Kahuna
 
Never mind ... I should know better...

I should know better. Search first then post.

The Server.Transfer command doesn't update the address bar. Changing to the Response.Redirect command updates the address bar, and doesn't affect the execution of my pages, since any posting that needs to be done is completed prior to the redirect.

Kahuna :D
 
Back
Top