Frames & ASP
I have an ASP page that contains frame with 2 rows both having the source as ASP.
The ASP containing the frame receives parameters from the calling ASP. What I want is to take these parameters and pass it them to one of the ASPs in the frame row.
How do I do that???
Anonymous posted this at 03:28 — 23rd November 1999.
They have: 5,633 posts
Joined: Jan 1970
From your document containing the frameset you could try something like this:
newParameter = ?;
function doIt() {
FRAMENAME.location.href = 'PAGENAME.asp?variable=' + newParameter;
}
------------------
http://go.to/hass
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.