I have a form in a ASPX page that saves & retains content after submission so that it can be cloned again with minor changes to some fields. This feature is built to save data entry time.
This Save form & Keep content functionality works fine when it works in a Intranet setting. However when this site is deployed to the Internet for public access, the form behaves inconsistently.
The form submission works fine a few times (this number keeps varying) - it saves form values & retains the same content, but later randomly shows values from previous data entries.
For example, in a form of 5 fields to store product info, I may choose to change just the title. The first time if I fill the value "Product 1" for the title field, it will save it & continue to display the same field values. Continuing this process, when I try to modify the title to "Product 5", it may not save that record & show "Product 3" instead of retaining "Product 5" as expected.
Has this anything to do with some ViewState size limit or some IIS cache setting or due to it being deployed to a Farm? Can anyone explain why a form within a site that works on the Intranet doesn't work similarly when it is published as a Internet site?