I was just wondering is there a maximum number of pages a response.redirect can use?
For example i have a form :-
1. which is submited to an asp page which creates a session, then response.redirect is used to:
2. place data in a table in a database, which then uses response.redirect to:
3. add data to a different table in a database, which then uses respnse.redirect to:
4. Email the user the autonumber made in the database, which then uses response.reidrect to:
5. output a html page to the user of the autonumber assigned to a booking
All up to submit a booking, about 5 pages carry on behind the scenes on the server, using the response.redirect command. Sometimes this causes errors. is there a maximum number of pages u can use this command before it stuffs up?
Also should i be using response.flush anywhere? I don't really understand how it works?
Thanks
Simon