-
Frame values
I've got a page with 2 frames and the top one (title) stores a value in a hidden field (sql)
What I need to be able to do using ASP (if possible) is pull the information into the bottom frame (content) when a new page is loaded into the bottom frame.
-
instead put your hidden field into you bottom frames,
to change it's value do:
parent.frames.yourBottomFrameName.yourBottomFormName.yourHiddenFielName.value=someValue;
-
That wouldn't work I need to retain the values when I move between pages and the Top frame is alway there, it the bottom one that keeps changing
-
ok,well
on your form, before submitting,
instead of putting a buttin of type submit put it to button,
onClick="doSubmit();"
function doSubmit(){
do you field switching value here
and submit your form!
}