Problem with page redirect in Live Environment

  • Thread starter Thread starter robin9876
  • Start date Start date
R

robin9876

On an asp.net v1.1 page after saving form information I have a page
redirect using
response.redirect("aDifferentPage.aspx")

This works correctly in development environment connecting from a
different pc.
The same code accessed from the same client pc accessing the live
environment is showing a blank screen (no controls) with URL still at
the original page at the point it should be redirecting.

Does anybody know why there is difference between development and live
environments and/or how to resolve it?
 
The only things that come to mind are:
- maybe the "aDifferentPage.aspx" is not located on the live server and the
redirect fails. Check for differences in relative paths...
- Is the "friendly messages" thing in use on the client?

Since the URL doesn't change it appears to be a problem in the page that
does the redirect. Otherwise you should get something like "Not Found"
 
The other page is located on the server but would return a 404 page not
found if not.
The friendly messages options are turned off on the client pc.
 
Back
Top