473,498 Members | 1,977 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Address bar

I have an application that I am working on. Currently, I have several pages
that are linked together using a Session.Transfer(PageName, true) command. I
am able to make it to the next page correctly, but the address bar does not
update to show the next page consistantly. I think that this might be
causing problems transferring hidden form values, and I think that this
might have something to do with it. Someone please help me.

--

Thanks,

Jeremy Ames
Code Powered Technologies
Nov 19 '05 #1
4 1106
If you use Server.Transfer, the address bar will not show the URL of the
page you transferred to, as the browser doesn't know anything about it.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Jeremy Ames" <je****@code-tech.net> wrote in message
news:e0**************@TK2MSFTNGP10.phx.gbl...
I have an application that I am working on. Currently, I have several pages that are linked together using a Session.Transfer(PageName, true) command. I am able to make it to the next page correctly, but the address bar does not update to show the next page consistantly. I think that this might be
causing problems transferring hidden form values, and I think that this
might have something to do with it. Someone please help me.

--

Thanks,

Jeremy Ames
Code Powered Technologies

Nov 19 '05 #2
Then how does the system keep up with the HTTP_REFERER and other variables
that are passed in the Request object?
--

Thanks,

Jeremy Ames
Code Powered Technologies

"Kevin Spencer" <ks******@takempis.com> wrote in message
news:OT**************@TK2MSFTNGP09.phx.gbl...
If you use Server.Transfer, the address bar will not show the URL of the
page you transferred to, as the browser doesn't know anything about it.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Jeremy Ames" <je****@code-tech.net> wrote in message
news:e0**************@TK2MSFTNGP10.phx.gbl...
I have an application that I am working on. Currently, I have several

pages
that are linked together using a Session.Transfer(PageName, true)
command.

I
am able to make it to the next page correctly, but the address bar does

not
update to show the next page consistantly. I think that this might be
causing problems transferring hidden form values, and I think that this
might have something to do with it. Someone please help me.

--

Thanks,

Jeremy Ames
Code Powered Technologies


Nov 19 '05 #3
Hello Jeremy,

They are still a part of the original request. When you use Server.Transfer,
you're transferring that request to another handler to process.

--
Matt Berther
http://www.mattberther.com
Then how does the system keep up with the HTTP_REFERER and other
variables that are passed in the Request object?

Jeremy Ames
Code Powered Technologies
"Kevin Spencer" <ks******@takempis.com> wrote in message
news:OT**************@TK2MSFTNGP09.phx.gbl...
If you use Server.Transfer, the address bar will not show the URL of
the page you transferred to, as the browser doesn't know anything
about it.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Neither a follower
nor a lender be.
"Jeremy Ames" <je****@code-tech.net> wrote in message
news:e0**************@TK2MSFTNGP10.phx.gbl...
I have an application that I am working on. Currently, I have
several

pages
that are linked together using a Session.Transfer(PageName, true)
command.

I
am able to make it to the next page correctly, but the address bar
does

not
update to show the next page consistantly. I think that this might
be causing problems transferring hidden form values, and I think
that this might have something to do with it. Someone please help
me.

--

Thanks,

Jeremy Ames
Code Powered Technologies

Nov 19 '05 #4
By the use of Server.Transfer's
second parameter : "preserveForm".

If you set this to True, using a statement such as
Server.Transfer("someother.aspx", True),
the existing query string and any form variables
will still be available to the page you are transferring to.

There's an associated Viewstate Server.Transfer bug.
See http://support.microsoft.com/default...b;en-us;316920

HTTP_REFERER will not be available, though.
The browser doesn't know the page changed.

Juan T. Llibre
===========
"Jeremy Ames" <je****@code-tech.net> wrote in message
news:OL**************@TK2MSFTNGP11.phx.gbl...
Then how does the system keep up with the HTTP_REFERER
and other variables that are passed in the Request object?
--

Thanks,

Jeremy Ames
Code Powered Technologies

"Kevin Spencer" <ks******@takempis.com> wrote in message
news:OT**************@TK2MSFTNGP09.phx.gbl...
If you use Server.Transfer, the address bar will not show the URL of the
page you transferred to, as the browser doesn't know anything about it.

--
HTH,
Kevin Spencer
.Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Jeremy Ames" <je****@code-tech.net> wrote in message
news:e0**************@TK2MSFTNGP10.phx.gbl...
I have an application that I am working on. Currently, I have several

pages
that are linked together using a Session.Transfer(PageName, true)
command.

I
am able to make it to the next page correctly, but the address bar does

not
update to show the next page consistantly. I think that this might be
causing problems transferring hidden form values, and I think that this
might have something to do with it. Someone please help me.

--

Thanks,

Jeremy Ames
Code Powered Technologies




Nov 19 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

21
15654
by: Alexander N. Spitzer | last post by:
If I have a machine with 3 virtual IP addresses (192.168.1.), how can I start 3 instances of the same RMI application (each started with different properties/configs), each listening on the port...
8
4574
by: YAN | last post by:
Hi, I want to get the mac address from a machine, which i have the IP address of that machine, how can i do that? I know how to get the mac address of the local machine from the following code: ...
7
21263
by: Privacy Advocate | last post by:
//crossposted to: comp.lang.javascript, alt.comp.lang.javascript in an effort to get factual answers from JavaScript experts// Simply put; Is it possible to obtain the real (actual) IP address of...
33
3114
by: baumann.Pan | last post by:
hi all, i want to get the address of buf, which defined as char buf = "abcde"; so can call strsep(address of buf, pointer to token);
4
6268
by: andreas.w.h.k. :-\) | last post by:
How do I change the address location in the wsdl <wsdl:port name="SearchSoap12" binding="tns:SearchSoap12"> <soap12:address location="http://searchservices/engine/search.asmx" /> </wsdl:port> ...
1
2919
by: Phoenix_ver10 | last post by:
I have a mailing list with multiple names going to the same addresses. I need one address with all the names for that address on it. I checked out the example on microsoft's site, but A: It doesn't...
1
2342
by: Jamie J. Begin | last post by:
I'm very new to the world of Python and am trying to wrap my head around it's OOP model. Much of my OOP experience comes from VB.Net, which is very different. Let's say I wanted to create an...
6
7006
by: Nicolas Noakes | last post by:
Hello, I would like to convert to following process to code. Any advice is welcome. I have a hardware device which requires the this procedure to set it's IP address. First create an static...
36
3356
by: Julienne Walker | last post by:
Ignoring implementation details and strictly following the C99 standard in terms of semantics, is there anything fundamentally flawed with describing the use of a (non-inline) function as an...
1
3103
by: saravanatmm | last post by:
I need javascript code for validate the email address. Email address field cannot allowed the capital letters, special characters except '@' symbol. But can allowed the small letters, numeric...
0
7002
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7203
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6885
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7379
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5462
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4908
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4588
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
1417
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
656
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.