Click here to Skip to main content
15,891,633 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Use Cases Pin
Michael Flanakin24-May-04 11:57
Michael Flanakin24-May-04 11:57 
GeneralRe: Use Cases Pin
deeps2626-May-04 21:03
deeps2626-May-04 21:03 
Generaljavascript error... Pin
l a u r e n20-May-04 10:59
l a u r e n20-May-04 10:59 
GeneralRe: javascript error... Pin
Andrew Quinn AUS20-May-04 11:27
Andrew Quinn AUS20-May-04 11:27 
GeneralRe: javascript error... Pin
l a u r e n20-May-04 11:28
l a u r e n20-May-04 11:28 
GeneralRe: javascript error... Pin
Bjoern Graf23-May-04 14:00
Bjoern Graf23-May-04 14:00 
GeneralRecurring Error message with BttlexForum Pin
Thermonuclear Penguin20-May-04 7:39
Thermonuclear Penguin20-May-04 7:39 
GeneralRe: Recurring Error message with BttlexForum Pin
Torsten Mauz1-Jun-04 11:21
Torsten Mauz1-Jun-04 11:21 

Ahh this old chestnut. I'm going to take a stab in the dark here and say that you've got a Response.Redirect in the Login.asp file. This is getting called after you've written some data out to the client. There is a simple fix for this, just add

Response.Buffer = true
at the top of the asp file and you should find that all will be well.



Setting Response.Buffer to true, tells asp to buffer all of the output until the page has been fully parsed and is ready to go. This means that if you make a change to the HTTP headers mid-page (Response.Redirect sends HTTP headers telling the browser that the requested item has been moved somewhere else [in this case wherever you Response.Redirected to]), asp will just issue out the final headers. Without buffered output, asp will have already sent an HTTP header saying that the resource was found as is following, then it will try to tell the browser that it moved (hence the error)



You will probably find that this page would work "as is" in IIS 5.0 as buffering is turned on by default, whereas in IIS 4.0 it was turned off.


If I'm wrong and this doesn't fix things for you, then please provide the broken code and I will try to help you further.


HTH
QuestionWeb Anaylsis Tools? Pin
David Flores20-May-04 5:03
David Flores20-May-04 5:03 
AnswerRe: Web Anaylsis Tools? Pin
ian mariano20-May-04 9:47
ian mariano20-May-04 9:47 
GeneralRe: Web Anaylsis Tools? Pin
David Flores21-May-04 4:07
David Flores21-May-04 4:07 
GeneralRe: Web Anaylsis Tools? Pin
alex.barylski23-May-04 13:06
alex.barylski23-May-04 13:06 
AnswerRe: Web Anaylsis Tools? Pin
Jan R Hansen21-May-04 12:02
Jan R Hansen21-May-04 12:02 
GeneralRe: Web Anaylsis Tools? Pin
l a u r e n22-May-04 8:21
l a u r e n22-May-04 8:21 
QuestionWhat HTTP headers do I need to add to download CAB files? Pin
Terry O'Nolley20-May-04 4:38
Terry O'Nolley20-May-04 4:38 
AnswerRe: What HTTP headers do I need to add to download CAB files? Pin
Andrew Quinn AUS20-May-04 4:42
Andrew Quinn AUS20-May-04 4:42 
GeneralRe: What HTTP headers do I need to add to download CAB files? Pin
Terry O'Nolley20-May-04 7:48
Terry O'Nolley20-May-04 7:48 
Generalamazon Upload need help... Pin
Sumit Kapoor19-May-04 19:53
Sumit Kapoor19-May-04 19:53 
Generalword document to html Pin
Xun Ding19-May-04 8:16
Xun Ding19-May-04 8:16 
GeneralRe: word document to html Pin
mystro_AKA_kokie19-May-04 9:47
mystro_AKA_kokie19-May-04 9:47 
GeneralRe: word document to html Pin
Xun Ding19-May-04 10:58
Xun Ding19-May-04 10:58 
GeneralRe: word document to html Pin
mystro_AKA_kokie19-May-04 11:04
mystro_AKA_kokie19-May-04 11:04 
GeneralRe: word document to html Pin
alex.barylski23-May-04 13:07
alex.barylski23-May-04 13:07 
GeneralRe: word document to html Pin
Bee Master20-May-04 4:17
Bee Master20-May-04 4:17 
GeneralRe: word document to html Pin
Xun Ding20-May-04 6:23
Xun Ding20-May-04 6:23 

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.