> From: Pani R [mailto:[EMAIL PROTECTED] > Now, when the un-logged user tries to register, where am I > suppose to store the Registration Values, Session or Request? > Which one will be the better approach and why?
I'm not entirely sure when the session officially gets created, I just expect it to be there, and it always is. If you're going to need something across requests, you can either jump through hoops and put it in hidden form elements, etc., or just stuff it in the session. I tend to treate memory and disk space as infinite resources, which may not scale, but works for my purposes. My vote is to put your values in the session and don't look back. Others may disagree... -- Wendy Smoak Application Systems Analyst, Sr. ASU IA Information Resources Management --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

