I call Create() which puts an object in session and returns a view. On that view is a button to "Add Item", which redirects to another controller, they select and item, and that id is returned to the first controller. But I can't return to the same Create() method since that puts a new object in session, overwriting any changes they may have entered before clicking "Add Item". How should I return to Create() when there may be some data already entered?
thank you.