sounds like you are trying to do a redirect after data has been sent to the browser. "Any HTTP header modifications must be made before writing page content." Good luck
This usually means there was some error and with the error it outputs some error message to the browser and it has to send the headers to be able to do this. Then when you get to your code that sends headers, oops they have already been sent.
What happens is that you are trying to set a new header not at the beginning of the page, when some of the response, including HTTP headers was already sent to the user. In other words, if you have something like this: Response.Write(somedata); Response.AddHeader(header, value); , you may get this error, depending on how much data is being sent in the first call. Move your call that modifies headers (e.g. AddHeader, Redirect, etc) to the beginning of the page and this problem will go away. J.D.
depends on your version of ISS you are running. If was turned on, he wouldn't be getting the error...