Problem with page redirect in Live Environment

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?
 
G

Guest

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"
 
R

robin9876

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top