|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Excuse if this question is stupid, but I am only one day into dealing with frames, I've been using a lot of html codes, but don't really know anything about this type of code.
OK, here is my question .... is there an html code where I can target the page of another site to show up inside a page on my site ... my idea is to target a messageboard built on one of those free sites and I want it to show up on the front page of my site in the area left on the page once frames are placed on top, bottom and left. This may not be possible, but I'm trying to save myself a great deal of money in doing it this way ... any help will be greatly appreciated. THANKS! |
|
#2
|
||||
|
||||
|
Although a tear trickled down my cheek when I heard that people still use frames
(I hate them), this code should give you an idea of how to do it.Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html> <head> <title>Frames Site</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <frameset cols="80,*" frameborder="NO" border="0" framespacing="0"> <frame src="http://www.microsoft.com" name="leftFrame" scrolling="NO" noresize> <frame src="/someotherpage.html" name="mainFrame"> </frameset> <noframes> <body> Your browser does not support frames </body> </noframes> </html> As you can see you just define one of the frame sources as the URL of this bulletin board.
__________________
If you found a post of mine helpful, please click on the on my post to add to my reputation.
|
|
#3
|
|||
|
|||
|
Thanks for the code ... it didn't work in the software I have, but I tried it in another and it worked ... so thanks!
|
![]() |
| Viewing: ASP Free Forums > Programming > HTML, JavaScript And CSS Help > Targeting Inside Frames? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|