Click here to Skip to main content
15,888,984 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: .net question Pin
Sandeep Mewara25-Dec-12 19:33
mveSandeep Mewara25-Dec-12 19:33 
QuestionWebRequest Pin
cdpsource21-Dec-12 14:16
cdpsource21-Dec-12 14:16 
Questionwebpage has resulted in too many redirects Pin
Jassim Rahma21-Dec-12 9:46
Jassim Rahma21-Dec-12 9:46 
AnswerRe: webpage has resulted in too many redirects Pin
jkirkerx22-Dec-12 18:50
professionaljkirkerx22-Dec-12 18:50 
GeneralRe: webpage has resulted in too many redirects Pin
Jassim Rahma23-Dec-12 8:36
Jassim Rahma23-Dec-12 8:36 
GeneralRe: webpage has resulted in too many redirects Pin
jkirkerx23-Dec-12 8:47
professionaljkirkerx23-Dec-12 8:47 
GeneralRe: webpage has resulted in too many redirects Pin
Jassim Rahma24-Dec-12 9:10
Jassim Rahma24-Dec-12 9:10 
GeneralRe: webpage has resulted in too many redirects Pin
jkirkerx24-Dec-12 13:05
professionaljkirkerx24-Dec-12 13:05 
You have to close the connection first before issuing a response.redirect, well you should at least, or else it can cause an error, or leave too many copies of the connector open. I would have to do research on that to confirm it, but I don't redirect when reading or writing data to a database.

Response.Redirect is the last thing you want to do in a sub, after closing and disposing of objects.

It's actually better to write a function without response.redirect, and have the function return a result or exit code, and then redirect.

if (0 = createStoredProcedure()) then
  response.redirect("~/option")
else
  response.redirect("~/error")
End if

Questionpop up on mouse over on a image button Pin
Yasir88721-Dec-12 6:42
Yasir88721-Dec-12 6:42 
AnswerRe: pop up on mouse over on a image button Pin
AnalogNerd21-Dec-12 9:26
AnalogNerd21-Dec-12 9:26 
GeneralRe: pop up on mouse over on a image button Pin
Yasir88721-Dec-12 17:09
Yasir88721-Dec-12 17:09 
AnswerRe: pop up on mouse over on a image button Pin
n.podbielski22-Dec-12 21:50
n.podbielski22-Dec-12 21:50 
AnswerRe: pop up on mouse over on a image button Pin
CommDev23-Dec-12 14:35
CommDev23-Dec-12 14:35 
Questionasp.net Pin
Nitin Pant20-Dec-12 21:43
Nitin Pant20-Dec-12 21:43 
AnswerRe: asp.net Pin
Richard MacCutchan20-Dec-12 22:57
mveRichard MacCutchan20-Dec-12 22:57 
RantRe: asp.net Pin
Richard Deeming21-Dec-12 1:31
mveRichard Deeming21-Dec-12 1:31 
GeneralRe: asp.net Pin
Richard MacCutchan21-Dec-12 2:04
mveRichard MacCutchan21-Dec-12 2:04 
JokeRe: asp.net Pin
n.podbielski22-Dec-12 21:54
n.podbielski22-Dec-12 21:54 
AnswerRe: asp.net Pin
J4amieC20-Dec-12 23:26
J4amieC20-Dec-12 23:26 
AnswerRe: asp.net Pin
Thomas Daniels20-Dec-12 23:52
mentorThomas Daniels20-Dec-12 23:52 
AnswerRe: asp.net Pin
CommDev23-Dec-12 14:15
CommDev23-Dec-12 14:15 
QuestionProblem with change Gridview cell value Pin
jojoba201119-Dec-12 23:24
jojoba201119-Dec-12 23:24 
AnswerRe: Problem with change Gridview cell value Pin
CommDev23-Dec-12 14:24
CommDev23-Dec-12 14:24 
QuestionHow to add anchor tag in uploded html page Pin
VyasRavi677619-Dec-12 18:54
VyasRavi677619-Dec-12 18:54 
AnswerRe: How to add anchor tag in uploded html page Pin
AmitGajjar20-Dec-12 5:39
professionalAmitGajjar20-Dec-12 5:39 

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.