Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this weird thing going on in my application.

At the moment, I have 'Trace="true" on my aspx directive and all Response.Redirect() codes are working fine. But as soon as I remove this directive, all the Response.Redirect go to the Home page of the site.

Any help will be appreaciated.

Here's the code:

protected void SearchSubmit_Click(object sender, EventArgs e) { Response.Redirect( "~/?view=Search+results&search=" + Server.UrlEncode(SearchText.Text), true); }

protected void AdvSearchSubmit_Click(object sender, EventArgs e) { string filtertype = ""; if (rbFilter.SelectedValue != "") filtertype = "&f=" + rbFilter.SelectedValue; Response.Redirect("~/?view=Search+results&search=" + HttpUtility.UrlEncode(advSearchText.Text) ); }

share|improve this question
1  
Response.Redirect() by default causes an exception. Is this messing with your redirects? Try Response.Redirect(url, false). – Sjoerd Dec 9 '11 at 14:21
The Trace option shouldn't impact redirects. Can you include some code snippets, including an example of the Trace directive you're using? – Garrett Vlieger Dec 9 '11 at 14:24
My Global.asax doesn't redirect to the home page : void Application_Error(object sender, EventArgs e) { // Code that runs when an unhandled error occurs } – olootu Dec 9 '11 at 15:01
Here is my code snippet: protected void SearchSubmit_Click(object sender, EventArgs e) { Response.Redirect( "~/?view=Search+results&search=" + Server.UrlEncode(SearchText.Text), true); } protected void AdvSearchSubmit_Click(object sender, EventArgs e) { string filtertype = ""; if (rbFilter.SelectedValue != "") filtertype = "&f=" + rbFilter.SelectedValue; Response.Redirect("~/?view=Search+results&search=" + HttpUtility.UrlEncode(advSearchText.Text) ); } – olootu Dec 9 '11 at 15:24

1 Answer

I'll bet an exception is occuring and you're being redirected to the home page via your application_error method in Global.asax.

Since response.redirect() aborts the thread this is the likely outcome.

share|improve this answer
My Global.Asax doesn't redirect to the home page: void Application_Error(object sender, EventArgs e) { // Code that runs when an unhandled error occurs } – olootu Dec 9 '11 at 14:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.