-
Hi, I use the following sub to choose from a dropdown. I'm trying to put the page that contains it into a frame and send the query strings to a different window in the frame. I can't get "Target" to work though. Could someone help me out?
Sub sponsor_onchange
location.href = "NewHeader.asp?SponID=" & sponsor.value & "&ReqID=ALL" target=Selecter
End Sub
Thank You,
JoeyO
-
if I remember correctly you need to use
top.framename.location.href
I could be wrong though
-
Or
parent.framename.location.href
-
Thanks guys, Top works for one page window.parent works when I nest it in another page