Send link to frame?

liunx

Guest
Hello,<br />
I have a webpage with the following link:<br />
<td width="6%" align="left"><div align="center"><a href=http://www.webdeveloper.com/forum/archive/index.php/"http://dmplusdc-hcm01/xpcmlogs/<%=(((BuildRequest_data = BuildRequest.getObject("DBID"))==null || BuildRequest.wasNull())?"":BuildRequest_data)%>_<%=(((BuildRequest_data = BuildRequest.getObject("TASKTYPE"))==null || BuildRequest.wasNull())?"":BuildRequest_data)%>.htm" target="_blank"><img src="images/form/log.gif" width="16" height="15" border="0"></a></div></td><br />
<br />
How can I make the link open in up in a new frame window? The link opens up a log that is constantly being updated. I would like the link to open in a two framed webpage. The top frame is small and will have a button to close the page and will also have javascript code to refresh the bottom frame that contains the log. I will enventually put a button in the top frame that will turn refresh on and off if possible as well. Please let me know how to send the link webpage into the bottom frame of a new window.<br />
<br />
thanks.<br />
<br />
Main Log Frame<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"><br />
<html><br />
<head><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<title>Untitled Document</title><br />
</head><br />
<br />
<frameset rows="80,*" frameborder="NO" border="0" framespacing="0"><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"LogFrameTop.htm" name="topFrame" scrolling="NO" noresize ><br />
<frame src=http://www.webdeveloper.com/forum/archive/index.php/"LogFrameMiddle.htm" name="mainFrame"><br />
</frameset><br />
<noframes><body><br />
</body></noframes><br />
</html><br />
<br />
Log Frame Top<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"<br />
"http://www.w3.org/TR/html4/loose.dtd"><br />
<html><br />
<head><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<meta http-equiv="refresh" content="5;LogFrameMiddle.htm"><br />
<title>Untitled Document</title><br />
</head><br />
<br />
<body><br />
<div align="right"><a href=http://www.webdeveloper.com/forum/archive/index.php/"javascript:top.window.close()">Close</a></div><br />
</body><br />
</html><br />
<br />
Log Frame Middle<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"<br />
"http://www.w3.org/TR/html4/loose.dtd"><br />
<html><br />
<head><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<title>Untitled Document</title><br />
</head><br />
<br />
<body><br />
</body><br />
</html><!--content-->
 
Back
Top