0
votes
0answers
29 views

Return response from another server

Have a nice day! Server with nginx + apache. When the main server receive request from user, it is necessary that PHP-script checked access for requested data (it is ready), and then would redirect ...
2
votes
3answers
36 views

Response method which is provided by the page class?

I need to create a button that will be offered to generate a printable invoice. This will reformat the webpage specifically for printing the buying tickets information. I am only allowed to use one ...
0
votes
0answers
35 views

Wordpress all pages intermittently 302 redirecting to themselves

All of the pages on my site www.inner-geek.com are 302 redirecting to themselves. However this is intermittent as its flicks between a 302 response to a 200 response. It's running on wordpress on ...
0
votes
2answers
332 views

ASP.NET Response.Redirect() issue not working at false parameter

Have trouble with the Response.Redirect() and getting the error: Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack I've googled and found some ...
0
votes
2answers
233 views

How to user Response.Write to redirect to a url?

I want to use Response.Write() in VB.NET to redirect to relative Url. I am using the following code: EDIT: Response.Write(("account/msgbox.aspx?action=account&status=" & ...
0
votes
1answer
115 views

Redirect and requests in flask microframework

Is there any difference in the way redirects and requests are handled in the flask micro-framework? I have a bunch of functions which are to be run before a request is made but apparently they are not ...
1
vote
1answer
443 views

Redirecting to a page after clicking OK in confirmation box in asp.net VB

I have an if condition on a button which redirects to another page. I want a confirmation box to pop up if the condition is true. If the user clicks ok on the box he should be redirecting to the page ...
0
votes
3answers
132 views

Symfony2 Is it possible to redirect from other places(functions)?

Forgive my English. I want to redirect not from action side but from a other function. controller public function editAction(Request $request, $id) { $em = ...
0
votes
1answer
94 views

Is it possible to change some form-data fields before sending the redirect response back to user?

I would like to redirect user's POST request with form data using 307 redirect like that protected void RedirectTemporary(string url) { Response.ClearContent(); Response.StatusCode = 307; ...
1
vote
3answers
8k views

open page in new tab asp.net

I am writing a project using ASP.NET C#. I want to implement linkbutton click event to open new page in a new tab, but before I have to create new session variable. I have tried this: protected void ...
0
votes
1answer
182 views

AJAX response conflict

I have a problem with my ajax redirection on response. The redirection works perfectly, but when, later, I have to return a Boolean with response, it returns the redirection. Here is the code. The ...
0
votes
1answer
325 views

Exit Popup With Respone Redirect

I have a requirement to show an Exit Popup on one of our processing pages. I am showing the exit popup by registering a client side javascript like window.onbeforeunload = ShowExitPopUp(); The ...
0
votes
1answer
266 views

How to remove post parameters on temporary redirect (HTTP 307)?

I have a problem with redirecting requests. I have an incoming GET or POST for http://foo.com/bar?A=b. I redirect it with HTTP 307 to http://hockily.com/dockily?C=d&E=f. But at hockily.com , I ...
0
votes
3answers
2k views

javax.servlet.HttpServletResponse.sendRedirect not redirecting

I have a javax.servlet.Filter class that I would like to redirect urls. The problem is that when I call httpResponse.sendRedirect("http://myurl/login.jsp") return; it doesn't redirect to there. ...
1
vote
3answers
856 views

send a redirection in java servlet doPost() method

I am able to get data from doPost() in java servlet and process the data accordingly. After that, i need to send a redirection response which I am not clear about. I intend to send the redirection ...
0
votes
3answers
560 views

Response.Redirect - How to write HTML Code/aspx code to response.redirect

How to response.redirect to a aspx page which is created on fly. Example: Response.Redirect('<HTML><BODY>.....</BODY></HTML>"); I don't have any address to redirect. I am ...
0
votes
1answer
672 views

Session variable empty in iis7 application

I have an asp.net application that uses ajax. I want to be able to pass data from one page to another so I store what I want in a session variable and redirect the response to the destination page ...
0
votes
0answers
835 views

response.sendRedirect “The page isn't redirecting properly”

I am using a filter to try and restrict access to jsp pages, the problem is O'm using AJAX through prototype to do requests, so I cant get the redirect to return properly when the filter catches them. ...
0
votes
0answers
67 views

how to get a response for a url? [closed]

I have a url that redirects to another url that I don't know. but when a go to the first always i'm redirected to another. I wanna embebed this last one, in my code. like a iFrame. how do I this? ...
3
votes
2answers
2k views

asp.net response.redirect in session_start doesn't work

I have a simple Session_Start code that looks like this: Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs) Dim sid = Session.SessionID Response.Redirect("~/Blog.aspx") dim ...
2
votes
2answers
368 views

Problem redirecting to another page

I am getting "Internet Explorer cannot display the webpage" error while trying to redirect ot another page. string targetURL = "~/AnotherForm.aspx?Xresult=" + HttpUtility.UrlEncode(res); ...
2
votes
1answer
431 views

How to override a redirect set previously in request processing

This has bothered me for a while and I've avoided it but the time has come! Often when extending core Magento functionality, whether using the Event-Observer pattern or by overriding a controller ...
0
votes
1answer
144 views

Response.Redirect passes the ISAPI_Rewrite engine

*I use ISAPI_Rewrite v2 Hi, So I implement ISAPI_Rewrite on my site. Now i put on my pages a Response.Redirect But as it seems the redirect passes the ISAPI engine.. i.e. I see the new url but the ...
1
vote
4answers
1k views

is response.redirect always an http GET response?

is response.redirect always an http GET response? or it could be POST?....
1
vote
1answer
674 views

ASP.NET 4 Response.Redirect not working from / but is from /index.aspx

I have a very basic test page, with a button and on the button click a call to Response.Redirect("b.aspx") This works fine when the page is loaded as http://myhost/index.aspx. However when the ...
0
votes
1answer
863 views

What is the use of response.sendRedirect()?

while using respone.sendRedirect("page.jsp") it was showing java.lang.IllegalStateException, while in some pages it was executing properly. How can I avoid this exception? For more details I passed ...
0
votes
2answers
352 views

HTML: Request - Response Redirection

Lets say I have a website www.mySite.com and there are a lot of pages whose links are www.mySite.com\contact.php and www.mySite.com\about.php. What if I want that when someone enters a direct link ...
3
votes
3answers
2k views

response.sendRedirect - check redirect is up

From JSP I just want a redirect to another page... <% response.sendRedirect("http://www.google.com/"); %> Can I check if google.com is up and then redirect (or write a msg else)... Something ...
0
votes
3answers
163 views

Is it possible to redirect non-HTML files with HTTP? And chaining redirects?

I have been thinking about a neat way of load balancing and one thing that would be required is to be capable of loading an image on an HTML page from multiple locations without rewriting the URL(on ...
7
votes
3answers
13k views

Redirect in Front Controller plugin Zend

I'm trying to centralise my redirects (based on authentication and various other states) into a front controller plugin. So far I've tried: $this->setRequest(new ...
2
votes
4answers
946 views

Redirect to webapp default document when another page is specified?

IIS6, ASP.NET 2.0, No Forms Authentication I'm calling Response.Redirect("~/foo.aspx"), but the default document ("Default.aspx") for my site is appearing. To make matters worse, it only happens ...
0
votes
1answer
110 views

Passing UN and PW through a HTTP response

I was wondering if its possible to redirect a user to a web page that required a username and password such as the one you would require for an IIS authenticated web site and automatically send ...