Click here to Skip to main content
15,915,328 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionconvert any web page like [ php or asp or aspx ] to html page Pin
tandurkar22-Jan-07 1:11
tandurkar22-Jan-07 1:11 
AnswerRe: convert any web page like [ php or asp or aspx ] to html page Pin
PSK_22-Jan-07 1:25
PSK_22-Jan-07 1:25 
QuestionProblem of ViewState Pin
Abhishek Joshi22-Jan-07 1:08
Abhishek Joshi22-Jan-07 1:08 
QuestionHow do I get the value from a particular cell in the gridview? Pin
blurMember22-Jan-07 1:07
blurMember22-Jan-07 1:07 
AnswerRe: How do I get the value from a particular cell in the gridview? Pin
Dayekh22-Jan-07 4:48
Dayekh22-Jan-07 4:48 
QuestionERROR :Threading was being aborted. Pin
mohd imran abdul aziz22-Jan-07 0:16
mohd imran abdul aziz22-Jan-07 0:16 
AnswerRe: ERROR :Threading was being aborted. Pin
PSK_22-Jan-07 0:46
PSK_22-Jan-07 0:46 
AnswerRe: ERROR :Threading was being aborted. Pin
Jon Sagara22-Jan-07 6:27
Jon Sagara22-Jan-07 6:27 
Response.Redirect causes a ThreadAbortException to be thrown. That's how the framework knows to stop processing the page and do the redirect. If you're going to call Response.Redirect within a try/catch block, you need to explicitly catch the ThreadAbortException and rethrow it.

try
{
   // Simplified example
   Response.Redirect("welcome.aspx");
}
catch (System.Threading.ThreadAbortException)
{
   // Allow the ThreadAbortException to propagate up the call stack.
   throw;
}
catch (Exception ex)
{
   Response.Output.Write(ex.ToString());
}


Jon Sagara
I controlled my laughter and simple said "No,I am very busy,so I can't write any code for you". The moment they heard this all the smiling face turned into a sad looking face and one of them farted. So i had to leave the place as soon as possible.
--Mr.Prakash


Blog | Site | Articles

QuestionRepeater Control VS 2003 VS VS 2005 Pin
just3ala221-Jan-07 23:56
just3ala221-Jan-07 23:56 
AnswerRe: Repeater Control VS 2003 VS VS 2005 Pin
just3ala222-Jan-07 0:11
just3ala222-Jan-07 0:11 
QuestionActive Directory and LDAP Pin
aaraaayen21-Jan-07 23:50
aaraaayen21-Jan-07 23:50 
QuestionHow set edit the cell in GridView Pin
slSoftware21-Jan-07 23:19
slSoftware21-Jan-07 23:19 
Questionserver side and client side Pin
ravikiranreddydharmannagari21-Jan-07 23:15
ravikiranreddydharmannagari21-Jan-07 23:15 
AnswerRe: server side and client side Pin
Guffa22-Jan-07 0:30
Guffa22-Jan-07 0:30 
QuestionOpen New Page Pin
Mohammed Elkholy21-Jan-07 23:11
Mohammed Elkholy21-Jan-07 23:11 
AnswerRe: Open New Page Pin
enjoycrack21-Jan-07 23:31
enjoycrack21-Jan-07 23:31 
GeneralRe: Open New Page Pin
Mohammed Elkholy22-Jan-07 1:06
Mohammed Elkholy22-Jan-07 1:06 
GeneralRe: Open New Page Pin
DavidNohejl22-Jan-07 2:00
DavidNohejl22-Jan-07 2:00 
QuestionSetting mouse over & mouse out event for each item in a DropDownList in asp.net Pin
248912821-Jan-07 23:05
248912821-Jan-07 23:05 
QuestionCalender control validation in javascript Pin
VaibhavTiparadi21-Jan-07 22:43
VaibhavTiparadi21-Jan-07 22:43 
QuestionAttaching Crystal Report Data as an attachment to the SMTP Mail Pin
Vijay_Patil21-Jan-07 21:22
Vijay_Patil21-Jan-07 21:22 
QuestionDatatables Pin
chohanpk21-Jan-07 20:36
chohanpk21-Jan-07 20:36 
AnswerRe: Datatables Pin
Jon Sagara21-Jan-07 20:43
Jon Sagara21-Jan-07 20:43 
GeneralRe: Datatables Pin
chohanpk21-Jan-07 20:46
chohanpk21-Jan-07 20:46 
GeneralRe: Datatables Pin
enjoycrack21-Jan-07 20:55
enjoycrack21-Jan-07 20:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.