I am still quite new to MVC, I had a complex form in my project. The form is student form, with all common fields such as firstname,lastname etc. On the form, it also need to add multiple addresses & notes for this student and display them. Once everything has been provided, it persist student with other data into multiple tables (I have separate address table and notes table).
Currently when user click add address button I use jquery popup an address dialog, once user complete the form, I use ajax to save the data into session, and same applies to notes. I am a bit worried, first session might be expired. second my form is more complex than what I've described, so there will be a lot of data in the session which in webform I hardly use that.
So can someone give me a better solution?
Thanks for your help.