I have a template where on one of the pages, in the body section, I want to have the content displayed from a different site. I thought I could use a frame or something. How do I do that? Is there a special bit of code I put in the body section to say it is a frame? I've never done one before! Thanks, Jon
Do you mean an iframe? <iframe src ="/pagename.asp" width="75%" marginwidth="10" scrolling="yes"></iframe>
A more user-friendly and future proof approach is to use the <object> tag. <object type="text/html" data="http://someplace.com/some.html"> <p>You may see this page at <a href=http://someplace.com/some.html> someplace</a> </p> </object> Code (markup): As you can see, should the user's UA not support <object>, they will see a link to the page. cheers, gary