PDA

Click to See Complete Forum and Search --> : Request Collection?


kb244
Jul 11th, 2000, 09:27 AM
Right now I am writing a Multi-Report interface that'll format multiple pages onto a single page so that even netscape users can print out a bunch of reports onto a single page, the problem is that, the normal print routine, print4.asp will take upto 9 URL#, with this multiple report submission, could go beyound 9 URLS (about 3 URLS per selection for a top, contents, bottom fames retreval) I would like to know how to pass over a dynamic number of URLs like in a collection, I'll also pass over a trigger parameter so I wont have to change all the regular print routines as well (this would require changing 3 other ASP just to make it compatible with the new print page, and my superior would like to change as little as possible) I feel that approaching this method would be best for size and speed, rather than a URL1 thru URL9 only(wonder why they did that in the first place) Any Ideas?
Also this is not a form submission, the parameters are passed directly on the url ...somthing.asp?URL1=blahblah&URL2...
with Server.URLEncode on each URL to make sure it passes through.
(I woulda done form submission but would require changing everything else, and would require more typing.)