This question is locked. New answers and comments are not allowed.
Hello... I have a very big form with lots of fields on it... so I have splitted all the data accross diferent tabs.
I have a page for "Details" with all his tabs in separate DetailsTab1.ascx, DetailsTab2.asc, and so... that get loaded dynamically using LoadContentFrom....
When the user selects the "Edit" button, i load another full page called "Edit" that is the same form in edit mode with textboxes, dropdowns, and so on... this page is also splitted in EditTab1.ascx, EditTab2.ascx... and gets loaded dynamically using LoadContentFrom as the previous one.
The problem is... when I choose "Save" (form post button) in this Edit page, my controller saves to database and does a RedirectToAction to page "Details" that shows the data.
The problem is, sometimes when Details loads after the post, the data is not updated even when I am reloading the full page, or sometimes it is, but clicking on "Edit" loads the edit page again and the old data is shown in edit mode...
Are you caching contents or anything like that?
Thanks in advance.