473,796 Members | 2,640 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Thread was being aborted error message when I use Response.Redire ct in ASP.net

Hi all

I have a page where I am trying to do a Response.Redire ct and I get the next
error message: 'Thread was being aborted'

How can I solve this problem?

Thanks in advance
Karunakara Rao.
Nov 16 '05 #1
5 12947
It is like this by design, when you use Response.Redire ct it calls the
Response.End method which raises a ThreadAbortExce ption when finished
processing the current response.

check out

http://msdn.microsoft.com/library/de...us/cpref/html/
frlrfsystemwebh ttpresponseclas sredirecttopic. asp

HTH

Ollie Riches

"karunakar" <ka***********@ stcroixsystems. com> wrote in message
news:Oc******** ******@TK2MSFTN GP15.phx.gbl...
Hi all

I have a page where I am trying to do a Response.Redire ct and I get the next error message: 'Thread was being aborted'

How can I solve this problem?

Thanks in advance
Karunakara Rao.

Nov 16 '05 #2
"karunakar" <ka***********@ stcroixsystems. com> wrote in message
news:Oc******** ******@TK2MSFTN GP15.phx.gbl...
How can I solve this problem?


Change Response.Redire ct(<URL>) to Response.Redire ct(<URL>, false)
Nov 16 '05 #3
Hi,

I assume your Response.Redire ct is within a 'try' block. If you take it
out of this then you will no longer get the error.

Regards,

Peter Chadwick (MCP)
pe**@code-explorers.com

Nov 16 '05 #4
Hi,

Sounds like your Response.Redire ct statement is within a 'try' block.

If you take this statement out of the 'try' block, you will no longer
get the error.

Regards,

Peter Chadwick (MCP)
pe**@code-explorers.com

Nov 16 '05 #5
Hi,

Is your Response.Redire ct statement with a try/catch block?

If so, take it out of the try/catch block and the error should
disappear...

HTH

Peter Chadwick (MCP)
pe**@code-explorers.com

Nov 16 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
3280
by: Brian | last post by:
I'm trying to response.redirect to another page on a button click event and I get an error message stating that the thread was being aborted (if I trap for the error that is...) I've researched this a bit and see that this error is supposed to happen in response.redirect, but it's not in a Try Catch statement for me so I don't know why it won't perform the redirect When the button is clicked the page is simply reloaded with a white screen,...
1
3082
by: GSK | last post by:
I am logging the following error when re-directing via Response.Redirect: "Thread was being aborted at System.Threading.Thread.AbortInternal() at System.Threading.Thread.Abort(Object stateInfo) at System.Web.HttpResponse.End() at System.Web.HttpResponse.Redirect(String url, Boolean endResponse) at ..." It doesn't interfere with the functionality and is transparent, and the only
3
2947
by: Stephen Miller | last post by:
I have an ASP.Net application that sends a NetworkStream to a .Net Service, which has a TcpListener listening on a port for the ASP.Net client. When it receives a request it creates a new thread with the AddressOf a class that runs a long data intensive process that can take between 1-15 minutes and results in the creation of a uniquely named file. Meanwhile, I want my ASP.Net application to sit and wait until the file appears at a...
6
8953
by: HLady | last post by:
I have been googling and cannot seem to find the answer I seek so I turn to the group. I have an application where I have been receiving 'Thread was being aborted' error ocasionally. In production I have received it at least 3 times in 45 days. It is sporadic. After some searching, I can rule out the most likely suspects. It is NOT happening because of a Reponse.Redirect, which seems to be the most common in the posts I have seen. I...
5
2033
by: Alan Silver | last post by:
Hello, I have a page that is supposed to do some checking, and if OK, set a session variable before redirecting to another page. The following code is a simplified version, I have hard-coded the basket ID and removed a load of extra checking... public partial class GoToCheckout : Page { public void Page_Load(Object o, EventArgs e) { try {
3
463
by: David Lozzi | last post by:
Howdy, I have an error mod in my app that emails me whenever there is an error. I use try..catch to capture the error. It works great, I love it, except for this one minor issue. Whenever there is a script that processes some data then issues a response.redirect() I get "Thread was being aborted" emailed to me. Below is an example of a script of where the error is occuring. It doesn't affect the end user at all, but I just keep getting...
5
495
by: Jimi | last post by:
Hi all, I have a user control which raises an event to the parent page when a person clicks on a link in a datagrid. In the event handler inside the parent page I construct a url to redirect to containing information sent from the datagrid. It all works fine on my local machine but when I send it to the live server I receive "The thread was being aborted" Doing some googling suggested that I use
4
2902
by: R.A.M. | last post by:
Hello, Could you help me plase? I have an ASP.NET page with "Search" button; when button is clicked Search_Click is called; here's the code: protected void Search_Click(object sender, EventArgs e) { Debug.WriteLine("WWWPage.Search_Click()"); ... try
1
3019
by: R.A.M. | last post by:
Hello, Could you help me plase? I am describing my problem second time because I haven't got a solution. I have an ASP.NET page with "Search" button; when button is clicked Search_Click is called; here's the code: protected void Search_Click(object sender, EventArgs e) { Debug.WriteLine("WWWPage.Search_Click()"); ...
0
9673
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10221
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10169
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9050
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7546
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6785
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5440
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5569
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3730
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.