tried that already - no luck :-(
Main Topics
Browse All TopicsHi guys, I'm sure this is something to do with my IE browser on a specific PC, so here goes:
I have the following web page:
<html><body>
<iframe src="" id="showframe"></iframe>
<iframe src="http://127.0.0.1/test
</body></html>
start.asp page basically loads a few things and also tries to do the following: open up a source page in the "showframe" iframe:
function Start(URL) {
top.frames['showframe'].lo
}
function targetiframe() {
url = "<%=thisURL%>";
Start(url);
}
<body onLoad="targetiframe();">
</body>
This works fine from two different PCs, but from my main PC (all PCs are Windows XP/IE7) it does not target the iframe, but instead opens a new browser window with the URL.
Is there a setting in IE 7 to allow the URL to load into the iframe and not pop up a new window?
Cheers
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
arggg. Figures it out :)
Need to have "navigate sub-frames across different domains" enabled in security settings becuase even though my initial webpage's domain was from 127.0.0.1 the resulting page trying to be loaded in the iframe was 192.168.0.5 (that PC's internal IP address). So hence the popup.
Business Accounts
Answer for Membership
by: kiranvjPosted on 2009-08-23 at 23:14:41ID: 25165906
try this
<iframe src="" id="showframe" name="showframe"></iframe>
instead of <iframe src="" id="showframe"></iframe>