Hi
I am working on create and edit of asset(A master of my project). I have a jsp named createEditAsset and an action AssetAction. When creating i call save method and when redirecting to jsp for edit i call poupulateFieldsForEdit() so that jsp fields can be loaded with data for editing.
Now this all works fine but after editing when i select the link create asset the jsp is still loaded with values although this time i didnt call poupulateFieldsForEdit() method. Shouldn't the values on valuestack for assetAction be flushed by framework after completion of one request scope? How can i do away with this problem?