Forum Moderators: open

Message Too Old, No Replies

Includes, iframes. best way to display external pages?

         

puremetal

1:36 pm on Sep 27, 2007 (gmt 0)

10+ Year Member



Background:
I run three main sites for different arms of a trade association, all of which contain some static content and then listings of members of the association, sorted by location.
The dynamic pages are from a database (actually 2 different dbs)... which are hosted on a seperate domain than the sites themselves. This was done as a managerial decision to reduce costs, but it has lead to some problems...

Issues:
Because the database pages (ASPs) are hosted on a different domain, I need to include them in the location pages. I currently do this with iframes.
ie: www.mydomain.com/listingsABC.htm contains an iframe which calls www.database.anotherdomain.com/listingsABC.asp

Question:
basically, is there a better way of doing this? (without moving the databases, that is...)
would an object tag be any better, for example? i've heard you can use that instead of iframes. i've looked into using an ajax solution, but what i've found only allows you to call pages from within the same domain.

As a side note, I try to get around the obvious SE crawling issue by putting much of the content the consumer reading the page sees inside the alternative content part of the iframe, ie: <iframe> what the consumer sees in plain text </iframe>, and it seems to work. only problem is that it somewhat defeats the object of having a database for the listings when i have to often (a few times a week, sometimes daily) change this static content for the sake of the SE page crawlers. So, again, is there a better way of doing all of this, bearing this in mind?

Thanks :-)

sgietz

9:36 pm on Sep 27, 2007 (gmt 0)

10+ Year Member



Are you using a database server (e.g. MySql), or a database file (e.g. MS Access)?

If it's a server you should be able to access it from anywhere. If it's a file you should be able to move it.

Let me know if I'm missing something.

puremetal

3:42 pm on Sep 28, 2007 (gmt 0)

10+ Year Member



Are you using a database server (e.g. MySql), or a database file (e.g. MS Access)?

If it's a server you should be able to access it from anywhere. If it's a file you should be able to move it.

Let me know if I'm missing something.

It's an Access database file, and I don't want to move it for a number of reasons including hosting cost, development time, etc.