Build URL with embedded target content

C

CommGuy

I am trying to figure out a way to build a URL address that specifies what
content to drop in a frame on the target page. Is this something that anyone
has experience with? Basically, I have a frames page, but each URL that I
build or send out would have different content, such as an included page or a
full URL to another page, to appear in one of the specified frames.

Help?? Thanks!
 
M

MD Websunlimited

Hi,

Use JavaScript to target the window of the frame you wish to display the content in.

parent.frames['main'].location.href = 'mypage' + (winServer ? '.asp' : '.htm')
 
Top