GIDForums  

Go Back   GIDForums > Webmaster Forums > Web Design Forum
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
 
Thread Tools Search this Thread Rate Thread
  #1  
Old 15-Nov-2003, 03:44
pcxgamer's Avatar
pcxgamer pcxgamer is offline
Senior Member
 
Join Date: Sep 2002
Location: South Carolina, USA
Posts: 1,060
pcxgamer is a jewel in the roughpcxgamer is a jewel in the roughpcxgamer is a jewel in the rough

Question About Tables


How can I open new windows inside tables? I'm working on a site that I would like to be able to open a new window much like you do with frames. But was wondering if the same thing can be done with tables?
__________________
If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization.
  #2  
Old 15-Nov-2003, 04:10
JdS's Avatar
JdS JdS is offline
Senior Member
 
Join Date: Aug 2001
Location: KUL, Malaysia
Posts: 3,371
JdS will become famous soon enough
Open new windows inside tables? I am confused... If there's a sample web page out there with this feature, it will be easier for us to understand.
  #3  
Old 15-Nov-2003, 05:15
pcxgamer's Avatar
pcxgamer pcxgamer is offline
Senior Member
 
Join Date: Sep 2002
Location: South Carolina, USA
Posts: 1,060
pcxgamer is a jewel in the roughpcxgamer is a jewel in the roughpcxgamer is a jewel in the rough
I'm not sure. Let me see if I can explain it better you know how you can have two frames. You click on a link in one frame and it open up in the other frame. If you still need more let me know and I'll try and throw up an example using frames.
__________________
If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization.
  #4  
Old 15-Nov-2003, 07:22
JdS's Avatar
JdS JdS is offline
Senior Member
 
Join Date: Aug 2001
Location: KUL, Malaysia
Posts: 3,371
JdS will become famous soon enough
I think I get it now....

You just do what you normally do with opening the page in a frame usually, e.g.:
HTML Code:
<a href="some_other_page.html" target="thenameoftheframe">Some other thingy</a>

Only difference is that instead of a frame(set) page, you would use an <iframe> tag to show the 'window' inside a table cell for instance. The rest is the same... i.e. you set up the 'window' in the cell by naming the <iframe> tag:
HTML Code:
<td><iframe src="main.html" name="the_name_of_the_iframe"></iframe></td> <!-- .... when you link, you just add the <a> tags like this--> <a href="something_else.html" target="the_name_of_the_iframe">Something Else</a>

Here are some existing [gid=http://www.desilva.biz/forum/viewtopic1034.php]examples of iframes[/gid] that you can review.

If that isn't it... let us know of course
  #5  
Old 16-Nov-2003, 03:50
pcxgamer's Avatar
pcxgamer pcxgamer is offline
Senior Member
 
Join Date: Sep 2002
Location: South Carolina, USA
Posts: 1,060
pcxgamer is a jewel in the roughpcxgamer is a jewel in the roughpcxgamer is a jewel in the rough
Thanks. Not exactly what I was looking for I've used I frames before but I thought that they weren't good for search engines. what will iframes do to my site as far as search engines are concerned?

Thanks again
__________________
If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization.
  #6  
Old 16-Nov-2003, 08:22
JdS's Avatar
JdS JdS is offline
Senior Member
 
Join Date: Aug 2001
Location: KUL, Malaysia
Posts: 3,371
JdS will become famous soon enough
Yeah PCX, I kinda figured out that that couldn't be it!

Are <iframe>s good for Search Engine bots? I can't say for sure... but my bet is that it's bad.
  #7  
Old 16-Nov-2003, 14:40
BobbyDouglas's Avatar
BobbyDouglas BobbyDouglas is offline
Regular Member
 
Join Date: Aug 2003
Posts: 789
BobbyDouglas has a spectacular aura aboutBobbyDouglas has a spectacular aura about
They are very bad for search engines. First off, you have make sure that the iframe is not included in the search engines. Secondly, your page will lose a lot of Rank in SE if you use an iframe, simply because the information on the iframe does not get include in the content on the actual page. This is because SE read the source of your site, and not what you see.
__________________
Mr. Bob's Web Design - Tirelessly looking for ways to enhance the customer base of your business.
  #8  
Old 20-Nov-2003, 23:07
pcxgamer's Avatar
pcxgamer pcxgamer is offline
Senior Member
 
Join Date: Sep 2002
Location: South Carolina, USA
Posts: 1,060
pcxgamer is a jewel in the roughpcxgamer is a jewel in the roughpcxgamer is a jewel in the rough
Thanks guys. I had though of something I must not have been think then I posted this. The page I'm working on is for my personal Intranet at home. So the search engines won't matter. But I still needed that question answered. Oh well one of those days I guess.

Thanks
__________________
If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization.
  #9  
Old 21-Nov-2003, 07:10
BobbyDouglas's Avatar
BobbyDouglas BobbyDouglas is offline
Regular Member
 
Join Date: Aug 2003
Posts: 789
BobbyDouglas has a spectacular aura aboutBobbyDouglas has a spectacular aura about
I think JdS already answered it. If not, provide some more information about the problem and I will try to help.
__________________
Mr. Bob's Web Design - Tirelessly looking for ways to enhance the customer base of your business.
  #10  
Old 21-Nov-2003, 12:37
pcxgamer's Avatar
pcxgamer pcxgamer is offline
Senior Member
 
Join Date: Sep 2002
Location: South Carolina, USA
Posts: 1,060
pcxgamer is a jewel in the roughpcxgamer is a jewel in the roughpcxgamer is a jewel in the rough
Oh I'm sorry I didn't mean that I still need the question answered I was just saying the reason I was trying to find out about the table was because I didn't think that frames were good for the search engines but the page that I needed this for isn't even for the Internet I just felt kind of dumb that I didn't think about that before. So your guys already answered my question I was just pointing out my stupidly.
__________________
If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization.
 
 

Recent GIDBlogFlickr uploads of IA pictures by crystalattice

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Question about loading php into tables or css pcxgamer Web Design Forum 6 17-Sep-2005 21:08
Selecting from 2 tables at the same time soviet MySQL / PHP Forum 2 07-Nov-2003 23:15
a C input question.. tmike C Programming Language 2 19-Sep-2003 02:39
a C input question tmike C Programming Language 1 16-Sep-2003 02:31
a noobish compiler question Charunks C++ Forum 5 03-Sep-2003 02:18

Network Sites: GIDNetwork · GIDWebHosts · GIDSearch · Learning Journal by J de Silva, The

All times are GMT -6. The time now is 16:05.


vBulletin, Copyright © 2000 - 2008, Jelsoft Enterprises Ltd.