Inherit value on web

Hello,

I am developing web application.I have form named LetterDraft which has Button named Preview.OnClick of this button i want to show preview to user.so i created another form named frmPreview & onclick event of Preview button on form LetterDraft i write the javascript code :

var f=document.forms[0];

url=“http://”+f.txtServerName.value+“/”+f.txtDbPath.value+“/frmPreview?OpenForm&ParentUNID=”+f.txtdocId.value;

window.open(url,null,“height=200,width=400,status=yes,toolbar=no,menubar=no,location=no”);

but the value is not inheriting on second form while i have selected form properties(Inherit…).Please help me .

Thanking you!!

Subject: RE: Inherit value on web

You have to save a document before another one can inherit values from it.