Ask a Question related to ASP Components, Design and Development.
-
Craig Douglas #1
Issue with Response.Redirect / Server.Transfer
Hi,
I have a problem with getting a redirect to work on our server.
It's worked fine on our server for months, but suddenly won't work and I
can't figure out why.
codewise, It's nothing special:
Response.Redirect("indexThankYou.htm");
instead of redirecting the browser to this page, an JavaScript-alert-style
message comes up with the text:
Cannot Find 'file://E:\wwwroot\mdc00152-learnproengine2_00\index.htm'. Make
sure the path or Internet address is correct.
(No page exists, nor was there ever any mention of it in the code)
I've examined the output with fiddler to find:
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a
href='E:\wwwroot\mdc00152-learnProEnginev2_00\index.htm'>here</a>.</h2>
</body></html>
I've checked that the aspnet client folder, and it's there and loads with a
code 200 (from fiddler)
Has anyone any ideas why this might have suddenly stopped working? Does
this sound like a cache-ing problem? The code has worked fine previously.
It would be preferable if I could get this working again without rebuilding
the application.
Thanks in advance.
Craig
Craig Douglas Guest
-
Response.Filter not working on Server.Transfer
I set the Response.Filter in my aspnet application but I have noticed that if you do a Server.Transfer that the filter doesn't get called. And in... -
Response.Redirect or Server.Transfer?
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... -
Response.Redirect Issue
I am not sure I understood your problem correctly. Can you restate the problem? "Mark Roberts" <mroberts@wackenhut.com> wrote in message... -
Response.Redirect Issue
I'm having a similar problem with Response.Redirect(). Everything works fine for Windows clients but Mac clients will occasionally get into a... -
Redirect to New Browser Window like Response.Redirect
That worked just fine for me as long as you put that open statement on one line rather than 2. "michel" <michely3k@yahoo.com> wrote in... -
offwhite #2
Re: Issue with Response.Redirect / Server.Transfer
Do you have any third party controls in use with this application?
Perhaps an evaluation or license period has ended and this is a
misguided way to alert you of the expiration.
I would also check if anyone has installed something new onto the
server or modified the Machine.config. This looks like very strange
behavior.
Brennan Stehling
[url]http://brennan.offwhite.net/blog/[/url]
Craig Douglas wrote:> Hi,
>
> I have a problem with getting a redirect to work on our server.
>
> It's worked fine on our server for months, but suddenly won't work and I
> can't figure out why.
>
> codewise, It's nothing special:
>
> Response.Redirect("indexThankYou.htm");
>
> instead of redirecting the browser to this page, an JavaScript-alert-style
> message comes up with the text:
>
> Cannot Find 'file://E:\wwwroot\mdc00152-learnproengine2_00\index.htm'. Make
> sure the path or Internet address is correct.
>
> (No page exists, nor was there ever any mention of it in the code)
>
> I've examined the output with fiddler to find:
>
> <html><head><title>Object moved</title></head><body>
> <h2>Object moved to <a
> href='E:\wwwroot\mdc00152-learnProEnginev2_00\index.htm'>here</a>.</h2>
> </body></html>
>
> I've checked that the aspnet client folder, and it's there and loads with a
> code 200 (from fiddler)
>
> Has anyone any ideas why this might have suddenly stopped working? Does
> this sound like a cache-ing problem? The code has worked fine previously.
>
> It would be preferable if I could get this working again without rebuilding
> the application.
>
> Thanks in advance.
>
> Craigoffwhite Guest



Reply With Quote

