embedding a fram within a table

Hi,<br />
Is it possible to embed a frame within a table of an asp page?<br />
i.e. can you make a tables contents be a page from another site?<br />
Thanks<!--content-->Sounds like you are looking for an iframe: <!-- m --><a class="postlink" href="http://www.w3.org/TR/REC-html40/present/frames.html#h-16.5">http://www.w3.org/TR/REC-html40/present ... tml#h-16.5</a><!-- m --><!--content-->Hi,<br />
I tried that using the following within the table<br />
<IFRAME src=http://www.webdeveloper.com/forum/archive/index.php/"http://www.hoganstand.com/js/latest.html" width="125" height="800" scrolling="auto" frameborder="1"><br />
</IFRAME><br />
But the table says page cannot be displayed but the link above works fine. Any ideas?<br />
You can see the problem at<br />
<!-- w --><a class="postlink" href="http://www.irishtrucker.com/testframe.asp">www.irishtrucker.com/testframe.asp</a><!-- w --><br />
Thanks<!--content-->Where abouts should I put that code?<!--content-->Doctypes go at the very top of the page. More info can be found at <!-- m --><a class="postlink" href="http://www.alistapart.com/stories/doctype/">http://www.alistapart.com/stories/doctype/</a><!-- m --><!--content-->This would be a problem:<br />
<br />
<IFRAME src=http://www.webdeveloper.com/forum/archive/index.php/"www.hoganstand.com/js/latest.html" width="125" height="800"<br />
scrolling="auto" frameborder="1"><br />
[Your user agent does not support frames or is currently configured<br />
not to display frames. However, you may visit<br />
<A href=http://www.webdeveloper.com/forum/archive/index.php/"foo.html">the related document.</A>]<br />
</IFRAME><br />
<br />
Try:<br />
<br />
<iframe src=http://www.webdeveloper.com/forum/archive/index.php/"http://www.hoganstand.com/js/latest.html" width="125" height="800"<br />
scrolling="auto" frameborder="1"><br />
[Your user agent does not support frames or is currently configured<br />
not to display frames. However, you may visit<br />
<A href=http://www.webdeveloper.com/forum/archive/index.php/"foo.html">the related document.</A>]<br />
</iframe><br />
<br />
Also, the code between the <iframe> tags should be customized to fit your site...<!--content-->Thanks guys, that worked a charm! Dave - that solved the javascript/server problem too, I used the iframe to view the code that works on the other server so it now 'looks' like it works on this page too.<br />
Thanks again<!--content-->
 
Back
Top