I have a page that processes some script. After it does this I want to send the user to a different page. I don't think I can use response.redirect. Does anybody know how to do this.
There should be no reason why you can't do a response.redirect unless you are passing information to another page. In that case you could do a response.redirect with querystrings of the information you are passing in the URL.
i.e.
If any header information is printed to the page, you will get this error with REsponse.Redirect. I don't know where this header stuff is being printed (perhaps by your component). Either do not print any html whatsoever (even a blank space) and do the response.redirect:
Code:
<%
Set objBuilder = Server.CreateObject("BuilderComponent.Start")
objBuilder.Start
Set objBuilder = Nothing
Response.Redirect "Results.asp"
%>
"It would appear that we have reached the limits of what it is possible to achieve with computer technology, although one should be careful with such statements, as they tend to sound pretty silly in 5 years."
Thanks, I will use response.buffer. The only thing with this is that while I'm buffering my page I can't give the user any feed back. I wanted to show a message telling them to wait, because my script takes several minutes to complete.