![]() Welcome! and rules Joel on Software |
Response.Redirect() Problem I just launched a new web site and it has a few Response.Redirect() method. on local server works fine (Win 2k Adv. Server, IIS 6.0, VS.Net 2002, .net 1.1), but on the host server none of them working. When the code gets to the mthod hangs. The result is blank page with the address still pointing to current page instead of the Redirected to page. The host server (Win 2003, IIS 6.0, .Net 1.1) anybody has any idea, why this is happening.
Mabb Shak
VS.Net 2002 != .Net framework 1.1
Greg Hurlman
On another note, Win 2k Adv. Server only supports IIS 5.0, not IIS 6.0.
Greg Hurlman
I installed .Net frame work 1.1 and all the compilation done in 1.1.
Mabb Shak
"none of them are working"
Tom
Make sure that on the asp.net error page that the asp.net version listed ont he bottom of the page is what you expect. I had been banging my head into the wall for a week when an application of mine wasn't working on my webhost - turned out that while asp.net 1.1 was available, all applications defaulted to 1.0 unless you upgraded your app directory.
Greg Hurlman
I've seen this problem in some circumstances (https: connection plus parameters on the URL). I didn't investigate deeply, but the fix in that case was to use absolute URLs rather than relative URLs as the target of the Response.Redirect calls.
Mike Gunderloy
I've actually seen, and fixed this, by disabled smartnavigation...
Colby Scott Makowsky
Hi all,
Mabb Shak
Opps,
Mabb Shak
|