Click here to Skip to main content
15,889,595 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: ASP.NET Pin
Richard MacCutchan10-Dec-12 21:32
mveRichard MacCutchan10-Dec-12 21:32 
AnswerRe: ASP.NET Pin
AmitGajjar11-Dec-12 6:48
professionalAmitGajjar11-Dec-12 6:48 
QuestionResponse.Redirect behavior Pin
AnalogNerd10-Dec-12 9:11
AnalogNerd10-Dec-12 9:11 
AnswerRe: Response.Redirect behavior Pin
David Mujica10-Dec-12 10:01
David Mujica10-Dec-12 10:01 
GeneralRe: Response.Redirect behavior Pin
AnalogNerd10-Dec-12 10:16
AnalogNerd10-Dec-12 10:16 
AnswerRe: Response.Redirect behavior Pin
Shameel10-Dec-12 21:28
professionalShameel10-Dec-12 21:28 
AnswerRe: Response.Redirect behavior Pin
AmitGajjar11-Dec-12 6:54
professionalAmitGajjar11-Dec-12 6:54 
AnswerRe: Response.Redirect behavior Pin
ZurdoDev12-Dec-12 4:36
professionalZurdoDev12-Dec-12 4:36 
You already have your answer but to explain Response.Redirect a little more: It is telling the Response object to redirect the user to the new page. What happens is the client gets that message and then requests somePage.aspx. So, it roundtrips but your C# thread will finish. It's essentially just adding a property to the Response object.

Server.Transfer will still finish your C# thread (finally will still run) but the client will not roundtrip. Execution will stay on the server and go to somePage.aspx and execute it and send the Response object back to the client.
There are only 10 types of people in the world, those who understand binary and those who don't.

GeneralRe: Response.Redirect behavior Pin
AnalogNerd12-Dec-12 4:46
AnalogNerd12-Dec-12 4:46 
QuestionERROR while updating image in database Pin
Ani199110-Dec-12 6:18
Ani199110-Dec-12 6:18 
GeneralRe: ERROR while updating image in database Pin
jkirkerx10-Dec-12 10:37
professionaljkirkerx10-Dec-12 10:37 
GeneralRe: ERROR while updating image in database Pin
Ani199110-Dec-12 21:15
Ani199110-Dec-12 21:15 
GeneralRe: ERROR while updating image in database Pin
Richard Deeming11-Dec-12 0:54
mveRichard Deeming11-Dec-12 0:54 
GeneralRe: ERROR while updating image in database Pin
jkirkerx11-Dec-12 7:26
professionaljkirkerx11-Dec-12 7:26 
Questionmaking a class with streamreader thread safe - perhaps using monitor or a singleton Pin
jkirkerx9-Dec-12 11:45
professionaljkirkerx9-Dec-12 11:45 
GeneralRe: making a class with streamreader thread safe - perhaps using monitor or a singleton Pin
jkirkerx9-Dec-12 16:14
professionaljkirkerx9-Dec-12 16:14 
QuestionDisplay Images from a database in a tile view Pin
Member 94655649-Dec-12 5:42
Member 94655649-Dec-12 5:42 
AnswerRe: Display Images from a database in a tile view Pin
Ali Al Omairi(Abu AlHassan)10-Dec-12 2:23
professionalAli Al Omairi(Abu AlHassan)10-Dec-12 2:23 
Questionlinq connection in asp.net Pin
JonBrynjar8-Dec-12 3:58
JonBrynjar8-Dec-12 3:58 
AnswerRe: linq connection in asp.net Pin
AmitGajjar11-Dec-12 7:00
professionalAmitGajjar11-Dec-12 7:00 
QuestionChange root path Pin
#realJSOP8-Dec-12 3:40
mve#realJSOP8-Dec-12 3:40 
AnswerRe: Change root path Pin
Richard Deeming10-Dec-12 1:35
mveRichard Deeming10-Dec-12 1:35 
GeneralRe: Change root path Pin
#realJSOP10-Dec-12 1:42
mve#realJSOP10-Dec-12 1:42 
AnswerRe: Change root path Pin
AmitGajjar11-Dec-12 7:10
professionalAmitGajjar11-Dec-12 7:10 
QuestionUpdating the column using entity framework Pin
indian1437-Dec-12 12:46
indian1437-Dec-12 12:46 

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.