Tagged Questions
The response.redirect tag has no wiki summary.
60
votes
14answers
40k 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.
I was hoping there ...
31
votes
12answers
97k 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 remember how =)
...
16
votes
2answers
843 views
Network-Path Reference URI / Scheme relative URLs
Scheme relative URLs (network-path references) are something that I've just found out about - where you don't specify the scheme of a URL and it picks it up from the current context.
For example:
...
14
votes
8answers
18k views
Why do I get “Cannot redirect after HTTP headers have been sent” when I call Response.Redirect()?
When I call Response.Redirect(someUrl) I get an HttpException: "Cannot redirect after HTTP headers have been sent".
Why do I get this? And how can I fix this issue?
11
votes
4answers
929 views
Redirecting default.aspx to root virtual directory
I have a simple ASP.NET 3.5 application running under IIS7 under a virtual directory. So the URL of my app is like http://site.com/app. I want to 301-redirect the request to site.com/app/default.aspx ...
10
votes
2answers
7k views
Response.Redirect using ~ Path
I have a method that where I want to redirect the user back to a login page located at the root of my web application.
I'm using the following code:
Response.Redirect("~/Login.aspx?ReturnPath=" + ...
9
votes
4answers
11k views
Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack
i am getting error
"Unable to evaluate expression because the code is optimized or a native frame is on top of the call stack."
i have redirected to a new page in repeater's itemcommand event.
...
6
votes
1answer
2k views
Response.Redirect and thread was being aborted error?
I had this error Thread was being aborted., this afternoon in my error log.
The code that caused this error is
Response.Redirect (Login.aspx, true);
If i change the bool value to false, the error ...
6
votes
5answers
5k views
Response.Redirect not ending execution
I have Default.aspx page, which inherits from BasePage.cs, which inherits from System.Web.UI.Page. BasePage is where I do some common things every page must do upon loading.
In BasePage, lets say ...
5
votes
3answers
3k views
In ASP.NET MVC, how does response.redirect work?
I have used response.redirect in classic ASP and ASP.NET webforms. However, with MVC 2.0, I am running into something peculiar.
I have a private method in a controller class that is used by ...
5
votes
3answers
189 views
Why/when are session writes vulnerable to thread termination?
THE CODE:
Session["foo"] = "bar";
Response.Redirect("foo.aspx");
THE PROBLEM:
When foo.aspx reads "foo" from the session, it's not there. The session is there, but there's no value for "foo".
...
4
votes
2answers
665 views
ADFS (CRM 2011) - Authentication Issue in Microsoft Outlook Client for CRM (Response.Redirect(…) & Window.Open(…))
Before I start, our customers have to connect through AFDS to be able to go on the CRM 2011. So we are talking about an “IFD”-environment.
I’m having a problem when using the “CRM 2011 Outlook ...
4
votes
2answers
245 views
Response.Redirect() doesn't work
I have Default.aspx page, which inherits from BasePage.cs, which inherits from System.Web.UI.Page. BasePage is where I check if the session has timed out. When the session has timed out and the user ...
4
votes
3answers
437 views
response.redirect issue in ASP.Net
I am using ASP.Net + VSTS 2008 + .Net 3.5 + C# + IIS 7. I am wondering if at server side, I call response.redirect to another Url in the same web application, whether session will be continued or ...
4
votes
1answer
324 views
Create short permalinks similar to Stack Overflow's “short permalink to this question”
I think I might already understand how this works, but wanted to be sure.
I am in the process of defining the routes for a new ASP.NET MVC application. I'd like to create short permalinks similar to ...
4
votes
2answers
1k views
ASP.NET - Response.Redirect Not Populating Url Referrer
I feel like i've done this a ton of times, but i can't for the life of me figure out what is going wrong.
Default.aspx:
protected void Page_Load(object sender, EventArgs e)
{
var r1 = ...
4
votes
3answers
242 views
ASP.NET - Avoid hardcoding paths
I'm looking for a best practice solution that aims to reduce the amount of URLs that are hard-coded in an ASP.NET application.
For example, when viewing a product details screen, performing an edit ...
3
votes
1answer
177 views
Response.Redirect() inside a try-finally [closed]
Possible Duplicate:
Will code in finally run after a redirect?
Hello,
What happens when I call a Response.Redirect() with EndResponse set to true/false inisde a try/finally block? Will the ...
3
votes
5answers
591 views
What is the alternative to Response.Redirect() asp.net?
Hi One of the tips in "website performance tips" in various blogs says "Avoid Redirects". In my case, I am using Response.Redirect for the same page. I am passing a querystring and displaying ...
3
votes
3answers
987 views
Redirecting to another page after Response.End() has been called in C#
I am exporting a gridview to excel, using .Net 4.0 in a web application, on page load and need for the file to be generated and then the page to be redirected to the calling page. I am running into ...
3
votes
3answers
209 views
How to throw HTTP errors?
I am using Response.Redirect to redirect the user to a new page but I want the page to be shown only if there is a particular parameter in the query string. Otherwise, I want an HTTP 401 ...
3
votes
5answers
1k views
Read Response.write in another Page
I have a page www.senderdomain.com/sender.aspx, from which i need to write a string to another page in other domain www.receiverdomain.com/receiver.aspx
In sender.aspx i have written
...
3
votes
3answers
511 views
When is it safe to do a Response.Redirect() without throwing an exception?
I have an intermediary class extending System.Web.UI.Page for all of my pages that require authentication. The class mostly does custom authentication handling.
When a user with insufficient access ...
3
votes
3answers
7k 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 of exceptions are ...
3
votes
6answers
1k views
asp.net redirect in firefox not working
In my .net 3.5 web app i redirect users to another page using response.redirect.
This works in all ie browsers but not in firefox browsers. i have no idea why?
Response.Redirect("~/"+ ...
3
votes
9answers
10k views
Response.Redirect strips Header Referrer - Possible to Add it Back?
I'm using a Response.Redirect to redirect users to another server to download a file, and the other server is checking the header to ensure it came from the correct server... however it seems ...
3
votes
8answers
2k views
How to Show/Hide Panels before executing Response.Redirect
I have a form that kicks off a Response.Redirect to download a file once complete. I also want to hide the form and show a 'thank you' panel before the redirect takes place, however it seems the ...
2
votes
3answers
73 views
MVC TDD : How to write test for Response.Redirect?
I am new to MVC and TDD, so if it is a stupid question please spare me :)
What I am trying to do is , I have created a SignOn controller and I just want to write a Test for that controller. The ...
2
votes
1answer
108 views
Strange #_=_ appear at the end of url after response.redirect ASP.NET
Anyone here using Response.Redirect() method, do have you encountered some strange characters attached to the end of the uri on the browser address bar?
The strange characters are hash, underscore, ...
2
votes
4answers
324 views
When Should I Use Response.Redirect(url, true)?
I'm redirecting to an Error page with a prettified error message in my Application_Error, in Global.asax.
At the moment it says:
Response.Redirect("Error.aspx", true);
Should that be:
...
2
votes
2answers
258 views
Response.Redirect() is dealing an Absolute URL as an relative URL
I have a .net C# page that redirects to an absolute url, eg:
Response.Redirect("rtsp://myvideoServer.com/myVideoAddress.mp4?ticket=1234&dt=1234");
But after the redirecting it results in:
...
2
votes
1answer
706 views
Response.REdirect within an IFrame
I have this situation of redirecting my asp page from a button within an IFrame.
Response.Redirect in the button click event redirects the IFrame but not the entire page.
Thanks,
Vishnu
2
votes
3answers
916 views
issue with Response.Redirect while using masterpage
I am developing a project using C#.net. Here in master page I have a button for search which will redirect to different pages in the project.
I am using "~/searchpage.aspx" for redirecting to other ...
2
votes
1answer
646 views
Can not do Response.Redirect when I use WebClient with Silverlight 4.0 to call aspx page
I am working on a Silverlight Project.
When i saved a jpg picture into a memorystream to save it
into the Context.InputStream, it is working fine.
I am calling an aspx page who thread the upload into ...
2
votes
3answers
328 views
How to redirect process output to System.String
I am calling Java process from .NET application and I need to redirect console output
to System.String to do some later parsing. Please advice. I would appreciate short code example.
public bool ...
2
votes
4answers
336 views
Why doesn't this page redirect work in IE?
I check for a session variable in my asp.net page and redirect to my default page.
if (Session["OrgId"] != null)
{
// some logic
}
else
{
...
2
votes
2answers
1k views
ASP.NET MVC2 - Redirect to Url in overriden controller
I've created a ControllerBase class that overrides the Execute method of the default Controller class. I'm doing this to check the url and pull an associated page from our database. If the page isn't ...
2
votes
4answers
801 views
Asp.net Response.Redirect - Incorrect referrer
I have a asp.net application that i use for traffic tracking.
I get a incoming visitor from several source websites and redirect the visitor to the target website using Response.Redirect(url);
The ...
2
votes
4answers
84 views
How to deal with missing items the SEO way?
I am working on a public-facing web site which serves up articles for people to read. After some time, articles become stale and we remove them from the site. My question is this: what is the best way ...
2
votes
4answers
227 views
Using ASP.NET Redirect without string URL?
For instance, what I have right now is the following:
Page.Response.Redirect("Default.aspx", false);
Needing to hardcode the string just seems odd to me. The Default.aspx page is already in my ...
2
votes
5answers
3k views
Why is Page_Load not firing after coming back from another page using ASP.NET - ergo epic embarrassment :)
Let's say I have two pages on the same ASP.NET C# WebSite.
Page1.aspx does things in the Page_Load event
I navigate to Page2.aspx using the menu
Page2.aspx does some things then Response.Redirect ...
2
votes
6answers
976 views
Screen Flicker On Response.redirect
I have an issue where the screen goes white for a millisecond on a redirect when rendering the new page.
This causes the screen to flicker and annoys me so.
I have had a little scoot round the web ...
2
votes
2answers
727 views
System.Threading.ThreadAbortException WITHOUT Response.Redirect call
I have an ASP.NET program which is launching this exception, apparently randomly. I've seen other questions about this exceptions, and everyone says that's a problem of Response.Redirect. However, I'm ...
2
votes
1answer
454 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 Windows Event log, and ...
2
votes
3answers
5k 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 compiled into a ...
2
votes
3answers
2k views
ASP.NET: How to redirect, prefilling form data?
i want a handler to redirect to a web-forms page, pre-filling in the values of some controls on the form.
i tried setting my current Request.Form data:
if (theyWantToDoSomething)
{
//pre-fill ...
2
votes
3answers
1k views
How to overwrite Response.Redirect to prevent port coming with it
I have a scenario that my load balancer translates port 80 from outside into port 801 which is local. And When it comes to server, server obviously sees port 801 and in Response.Redirect it tries to ...
2
votes
7answers
917 views
Response.Redirect(“”) inside “using{ }”
Assume the following code:
using (SqlConnection conn = new SqlConnection(connectionString))
{
...
using (SqlCommand comm = new SqlCommand(...))
{
.. do stuff ..
if(condition) ...
1
vote
4answers
57 views
response.redirect from one asp.net web app to another
I have a VS 2011 solution file with two projects, each is a project file for a web app. One is an older version of the application and the other is a newer version. When a user signs in to the older ...
1
vote
3answers
87 views
ASP.NET - Response redirect to different folder
I am attempting to redirect a gridview on selection. However, I am getting stuck on redirection when the page I am trying to redirect to is in a different folder.
The gridview is in a folder named ...