You can put the user_id in Rails flash which will remember it for only the next request and then automatically discard it. Your next request is the "continue_registration" so you can do whatever you want with it. As a matter of fact, you can pretty much put all the user data from the first form in it so that you have access to it in the second form. Flash only remembers the data stored in it for the next request and then is automatically cleared by rails. I would not put it in session since you will have to manually clean it. Bharat
--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

