Response.Redirect sometimes fails

  • Thread starter Thread starter Klem
  • Start date Start date
K

Klem

Hi

I am expiriancing a very,very strange problem.
I have an asp.net application that hangs (sometimes) when trying to
execute Response.Redirect("page.aspx",true) command.

What is very strange is that it behaives differently when accessed from
different locations even where IE browsers are the same version.

It works without any problems on localhost. It also works without any
problems from my work. From my home connection it fails after approx 4
redirects. From my friend's work it hangs on the first redirect.

I have never seen anything like this before. PLEASE HELP!
Thnak you

Klem
 
BTW

Sorry about the spelling. Been up all night trying to figure this one
out.

Thnx

Klem
 
Are you using url rewriting? Early versions of the framework had some issues
with url rewriting
 
Eirik

I am not using any url rewriting.
I am not even passing any query string parameters. Its a simple
redirect.
I do set a session variable prior to executing redirect, and its a
simple text only value that is put into it.
Behind a button, I have Response.Redirect("abc.aspx",true);

Thnx

Klem
 
most likly a coding error where a page is redirecting to itself, then
redirecting to itself ....

-- bruce (sqlwork.com)

| Hi
|
| I am expiriancing a very,very strange problem.
| I have an asp.net application that hangs (sometimes) when trying to
| execute Response.Redirect("page.aspx",true) command.
|
| What is very strange is that it behaives differently when accessed from
| different locations even where IE browsers are the same version.
|
| It works without any problems on localhost. It also works without any
| problems from my work. From my home connection it fails after approx 4
| redirects. From my friend's work it hangs on the first redirect.
|
| I have never seen anything like this before. PLEASE HELP!
| Thnak you
|
| Klem
|
 
I do not specify smartNavigation in my @page. Should I?
I think that if smartnavigation is not explicitly specified, the
default is false

Thnx

Klem
 
I set smartnavigation to false and the problem still persists.
Any other ideas?

Thnx

Klem
 
All

Thank you for your help. After I move the application to another
server it worked without any problem. It seems that there is some
issue with the server I was hosting on. I will post the question to
the server groups.

Thnx again

Klem
 
Back
Top