0
votes
1answer
15 views
Response.Redirect Fails When Called By “Inner” ASPX
I have an ASPX (PictureGetter.aspx) That loads images and writes them to the response in a manner such as this:
private void WritePicture()
{
byte[] bytes = GetBytes(picPath); …
0
votes
5answers
61 views
Redirect to error page
I want to use Response.Redirect to redirect the browser when an exception occurs.
I also want to pass the exception message to my error page.
For example:
string URL = "Page2.asp …
0
votes
2answers
34 views
Updateprogess image is not ending or disappearing or vanishing or hiding after Response.Redirect is called.
I have an updateprogress bar, displaying a text "loading". After I hit a imagebutton (I am using it for downloading a file) inside my update panel, with a click event, It calls cli …
1
vote
1answer
62 views
Response.Redirect Word Document Glitch?
I come a desperate and broken man....
I'm developing a corporate intranet / search engine application. When users open a document, my ASP.NET code records the action to the Wind …
6
votes
7answers
10k views
ASP.NET Response.Redirect to new window
I want to do a Response.Redirect("MyPage.aspx") but have it open in a new browser window. I've done this before without using the JavaScript register script method. I just can't re …
1
vote
2answers
243 views
How to avoid “Response.Redirect cannot be called in a Page callback”
I'm cleaning up some legacy framework code and a huge amount of it is simply coding by exception. No values are checked to see if they are null, and as a result, copious amounts o …
0
votes
3answers
76 views
How can I read what the destination URL is when a redirect is requested?
Hi,
I am using a master page with a dynamic menu bar across the page. If the user has requested a redirect back to the login (home) page, I don't want to log them out but I do wa …
0
votes
1answer
53 views
Problem with response.redirect sending incorrect HTTPMethod
Hi,
I've got a strange problem with a Response.Redirect. I'm using VB.NET with the .NET 2 framework (so VS2005 & SP1).
I've got a page that I do a form submit on (that's a p …
8
votes
14answers
5k views
Response.Redirect with POST instead of Get?
We have the requirement to take a form submission and save some data, then redirect the user to a page offsite, but in redirecting, we need to "submit" a form with POST, not GET.
…
0
votes
3answers
489 views
How to post data from a webform page to an HTTPHandler.ashx file ?
Please bear with a bit of background first...
I have a web application project to support file transfer operations to vendor product backend. It's composed of 2 HTTPHandler files …
0
votes
1answer
101 views
ASP.NET Page posting back while it should be redirecting
Hi all
The first page of our webapplication is a Login-Page.
We are using FormsAuthentication. We are not using a database, but multiple Active Directories. So we fill the FormsA …
0
votes
5answers
124 views
Directing to a new page after downloading a file
When I try to redirect to a new page after downloading a file it doesn't work. Do I have to remove or modify anything in this code? the debugger doesnt reach it
byte[] fileData = …
1
vote
1answer
159 views
Magic with URL in asp.net - 3.5
This is my dilema:
My web site done in asp.net 3.5. I have buttons which if the user clicks should show images. The images are located at a third party and accessible via web url. …
0
votes
2answers
183 views
Response.redirect does not work with Ajax controls
I have a page with several user controls that use Ajax. When I try to do a response.redirect from this page, Ajax traps the call and does not allow the redirect.
How can I do a r …
0
votes
3answers
278 views
Cannot do response.redirect from page with Ajax controls
I have a page that contains many user controls, each of which uses Ajax. When I load this page, under certain conditions, I want to do a response.redirect; however response.redirec …
