Link to home
Start Free TrialLog in
Avatar of fayeb
fayeb

asked on

Incorrect Field Value

I have a web application with an editable text field which is hidden when read and a computed for display field which is set to the value of the editable field and it is set to hide when editing.

When I enter a value in the field (e.g ABC)and save the document it all works fine, I then go in and edit the field (e.g. DEF) and save.  When I open up the modified document in read mode it displays the correct value (i.e.DEF), when I then place the document into edit mode it refers back to the old value(i.e.ABC).

I have tried placing the default value of the name of the field but still no joy...Please help it is driving me mad!!!
ASKER CERTIFIED SOLUTION
Avatar of CRAK
CRAK
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of fayeb
fayeb

ASKER

I found the code....

"<META HTTP-EQUIV=\"pragma\" CONTENT=\"no-cache\">"+  @NewLine +
"<META HTTP-EQUIV=\"expire\" CONTENT=\"0\">"

Cheers
Include this in html head content section of ur form
"<META HTTP-EQUIV='Expires' Content='0'>"

~Hemanth
Thanks!