2008/3/27, Tom Holmes Jr. <[EMAIL PROTECTED]>: > > Well, my use case, I am parsing a CSV file and the first line contains > the header information. > Each column has a header .... so rather than parse the entire file at > this time, I just grab the first line. > That's all I need to do in that action, then I need to hold onto that > file, and then go to the next page. > I need some user/mapping information on this second page ... and then > when I submit from the second page. > Then I have all the information I need so I can parse the rest of the > data. > > If I parse the file after the first page ... I'm not ready to do > anything with it yet. > So, I still need to hold onto this file until after the second page. > That's my use case. Thanks!
Why don't you parse it "before" you need it, storing the result of the parsing in session? Antonio