473,548 Members | 2,691 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

framework 1.1 sp1 and suddenly server.transfer not working

I just upgraded my XP development machine to SP2, upgraded dotnet framework
1.1 to sp1, and applied every other outstanding security patch, and suddenly
Server.Transfer in my asp.net website no longer works. I get:
Invalid path for child request
'Browse.aspx?&p =4&q=14569:10.1 .0.4;14581:3:6. 0:7.3'. A virtual path is
expected.
What does it mean "virtual path is expected"? Isn't that what I'm giving it?
And it worked yesterday! I didn't change a thing in my project or IIS.
Nov 18 '05 #1
3 1391
Try doing ~/Browse.aspx

Incidentally, try and avoid using Server.Transfer . It's legacy carry over
from Classic ASP. Use Server.Execute or even better Response.Redire ct.

- Sahil Malik
You can reach me thru my blog http://www.dotnetjunkies.com/weblog/sahilmalik

"Jack Fox" <ja*****@ix.net com.com> wrote in message
news:09******** ********@newsre ad3.news.pas.ea rthlink.net...
I just upgraded my XP development machine to SP2, upgraded dotnet framework
1.1 to sp1, and applied every other outstanding security patch, and
suddenly Server.Transfer in my asp.net website no longer works. I get:
Invalid path for child request
'Browse.aspx?&p =4&q=14569:10.1 .0.4;14581:3:6. 0:7.3'. A virtual path is
expected.
What does it mean "virtual path is expected"? Isn't that what I'm giving
it? And it worked yesterday! I didn't change a thing in my project or IIS.

Nov 18 '05 #2
That didn't seem to work either, also not with Server.Execute( ).

long story: I would normally do a redirect, except I am trying to work
around a cross-browser problem. I'm trying to save more state information
than will fit in one cookie. IE handles multiple cookies created in ASP.NET
just fine, but FireFox is not getting all the cookies. (I am guessing that
other "netscape" browsers have the same problem.) ...anyway, should be able
to save session state with a redirect too, but having some sort of problem.

short story: it worked before the SP upgrade!

Any light you can shed on cookie problems with "netscape", specifically
FireFox, would be helpful. I haven't been able to find anything yet.

"Sahil Malik" <co************ *****@nospam.co m> wrote in message
news:OB******** ******@TK2MSFTN GP12.phx.gbl...
Try doing ~/Browse.aspx

Incidentally, try and avoid using Server.Transfer . It's legacy carry over
from Classic ASP. Use Server.Execute or even better Response.Redire ct.

- Sahil Malik
You can reach me thru my blog
http://www.dotnetjunkies.com/weblog/sahilmalik

"Jack Fox" <ja*****@ix.net com.com> wrote in message
news:09******** ********@newsre ad3.news.pas.ea rthlink.net...
I just upgraded my XP development machine to SP2, upgraded dotnet
framework 1.1 to sp1, and applied every other outstanding security patch,
and suddenly Server.Transfer in my asp.net website no longer works. I get:
Invalid path for child request
'Browse.aspx?&p =4&q=14569:10.1 .0.4;14581:3:6. 0:7.3'. A virtual path is
expected.
What does it mean "virtual path is expected"? Isn't that what I'm giving
it? And it worked yesterday! I didn't change a thing in my project or
IIS.


Nov 18 '05 #3
I assume you cant include any of the following characters in your
path:

Asterisk (*)
Question mark (?)
Angle brackets (< or >)
Comma (,)
Colon or semi-colon (: or ;)
Single-quote or double-quote (' or ")
Right square bracket (])
Double slashes (// or \\)

as carryover from ASP. You can check::::
http://msdn.microsoft.com/library/de...om_seromtr.asp

"Jack Fox" <ja*****@ix.net com.com> wrote in message news:<Pv******* **********@news read3.news.pas. earthlink.net>. ..
That didn't seem to work either, also not with Server.Execute( ).

long story: I would normally do a redirect, except I am trying to work
around a cross-browser problem. I'm trying to save more state information
than will fit in one cookie. IE handles multiple cookies created in ASP.NET
just fine, but FireFox is not getting all the cookies. (I am guessing that
other "netscape" browsers have the same problem.) ...anyway, should be able
to save session state with a redirect too, but having some sort of problem.

short story: it worked before the SP upgrade!

Any light you can shed on cookie problems with "netscape", specifically
FireFox, would be helpful. I haven't been able to find anything yet.

"Sahil Malik" <co************ *****@nospam.co m> wrote in message
news:OB******** ******@TK2MSFTN GP12.phx.gbl...
Try doing ~/Browse.aspx

Incidentally, try and avoid using Server.Transfer . It's legacy carry over
from Classic ASP. Use Server.Execute or even better Response.Redire ct.

- Sahil Malik
You can reach me thru my blog
http://www.dotnetjunkies.com/weblog/sahilmalik

"Jack Fox" <ja*****@ix.net com.com> wrote in message
news:09******** ********@newsre ad3.news.pas.ea rthlink.net...
I just upgraded my XP development machine to SP2, upgraded dotnet
framework 1.1 to sp1, and applied every other outstanding security patch,
and suddenly Server.Transfer in my asp.net website no longer works. I get:
Invalid path for child request
'Browse.aspx?&p =4&q=14569:10.1 .0.4;14581:3:6. 0:7.3'. A virtual path is
expected.
What does it mean "virtual path is expected"? Isn't that what I'm giving
it? And it worked yesterday! I didn't change a thing in my project or
IIS.


Nov 18 '05 #4

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

Similar topics

0
682
by: Carsten Gehling | last post by:
> Fra: python-list-admin@python.org > På vegne af Moshe Zadka > Sendt: 16. juli 2003 16:33 > Why, did Apache's reverse proxy module stop working suddenly? Sorry - you're right :-) In fact this is also the way I would configure Zope. > Note, however, that Twisted is *not* a web framework. It has a web
3
9064
by: Justin | last post by:
Hi, Im confused here over the usage of Response.Redirect and Server.Transfer. I used frameset for my work, what are the proper usages of the two methods that seems working similar.. The problem i faced while using Response.Redirect is that the page that is directed to, does not looks as desired..the textboxes are not visible anymore and...
8
3776
by: Cathie | last post by:
Hi guys, I want to do a Server.Transfer to get to a second page, so that I may retrieve variables I have set in the first page. I'm doing that with the usual Server.Transfer("pagename", true). My problems are as follows: 1. On the initial load everything seems to be referencing from the first page. For example, my style sheet I...
1
3485
by: Victor Song | last post by:
Hi We are trying to stream a file using server.transfer rather than response.redirect. We have it working for IIS 5.0 but IIS 6.0 refusing to let us transfer the file. If we do the less efficient prompt/response technique to the browser both work fine. We found this article that was only slightly appicable...
9
3188
by: Tim D | last post by:
Hi, I originally posted this as a reply to a rather old thread in dotnet.framework.general and didn't get any response. I thought it might be more relevant here; anyone got any ideas? My questions are below... "David Good" wrote: > We have a network running both Win2k and Win2k3 webservers and our web sites > reside on a UNC network...
4
1579
by: Stan | last post by:
This code has been working for a long time: try { Server.Transfer ("Order.aspx"); } catch (Exception ex) { /// }
2
1860
by: Alex | last post by:
Hello, Quick question and I would really appreciate if anybody could helps me. Here are the steps to reproduce the problem. Create simple ASP.Net application. In code behind added protected class variable: protected string _result = "No result"; Page Load event has:
6
2177
by: n# | last post by:
A Basic Question in ASP.NEt 1.1 In Page_Load Event I am doing a Server.Transfer. But it throws an error on the browser windows showing "Server Application Not Found" Pls help me
3
1339
by: Buddy Home | last post by:
Hello, We have a system that is written in Framework 1.0 and runs under Framework 1.0. It uses the CLR Workstation to load the application. Framework 1.0 would require us to write unmanaged code to launch the application under CLR Server. My understanding is that if the application is launched by CLR Workstation then we have only one...
0
7444
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7711
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
7954
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7467
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
6039
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5367
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5085
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3497
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
1
1054
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.