![]() |
|
|
|
#1 |
|
I use iFrames to embed html pages within a main page. To accomplish the
same, are there alternatives to iFrames? Thanks! Ben Falcon |
|
|
|
|
#2 |
|
Posts: n/a
|
Ben Falcon wrote:
> I use iFrames to embed html pages within a main page. To accomplish the > same, are there alternatives to iFrames? First decide WHY you want to embed HTML pages in other HTML pages. Your reasons are probalby wrong. -- -=tn=- |
|
|
|
#3 |
|
Posts: n/a
|
"Travis Newbury" <> wrote in message news: oups.com... > Ben Falcon wrote: > > I use iFrames to embed html pages within a main page. To accomplish > the > > same, are there alternatives to iFrames? > > First decide WHY you want to embed HTML pages in other HTML pages. > Your reasons are probalby wrong. use xml if you can get the content exported in the first place, or use a code parser to rip the content between two definable elements and drop it into your website - the later is a little slow tho mark |
|
|
|
#4 |
|
Posts: n/a
|
Hello Mark,
I regularly parse html files when serving dynamic cgi content. For example, my cgi may read the document and insert the content between the definable elements you mention. I know that the same can be accomplished with php, asp, etc... In my case, the website in question is a purely static (non-changing) site consisting of html files. Because of this, I can only imagine that an isapi filter loaded on the webserver would do the trick since it would process each served html page. But truthfully, I was hoping to find a much simpler solution, like iFrames for instance. But because of the show stopping cookie limitation that I mentioned to Travis, I am hoping (and grasping at straws) that maybe, CSS would somehow help out. Thanks, Ben "mark | r" <> wrote in message news:42271df9$0$12848$ ... > > "Travis Newbury" <> wrote in message > news: oups.com... > > use xml if you can get the content exported in the first place, or use a > code parser to rip the content between two definable elements and drop it > into your website - the later is a little slow tho > > mark > > -- ELKNews FREE Edition - Empower your News Reader! http://www.atozedsoftware.com |
|
|
|
#5 |
|
Posts: n/a
|
Travis,
I'm currently using iFrames to display data and they've worked very well in other circumstances. Unfortunately, I'd like for the iFrame embedded document to read and set cookies. When the document is enbedded within an iFrame, the embedded document cannot read and/or set cookies, or so has been my experience. If that document (the embedded one) is taken out of the iFrame, it has no problems setting/reading cookies. I was pretty much wondering if CSS (which I know absolutely nothing of), will allow for me to 'embed' another html document within a specified or 'contained' area. Thank you, Ben "Travis Newbury" <> wrote in message news: oups.com... > Ben Falcon wrote: >> I use iFrames to embed html pages within a main page. To accomplish > the >> same, are there alternatives to iFrames? > > First decide WHY you want to embed HTML pages in other HTML pages. > Your reasons are probalby wrong. > > -- > -=tn=- > -- ELKNews FREE Edition - Empower your News Reader! http://www.atozedsoftware.com |
|
|
|
#6 |
|
Posts: n/a
|
"Ben Falcon" <> wrote in message news:vABVd.11196$... > I use iFrames to embed html pages within a main page. To accomplish the > same, are there alternatives to iFrames? > > Thanks! > scrolling div? |
|
|
|
#7 |
|
Posts: n/a
|
Ben Falcon wrote:
> I use iFrames to embed html pages within a main page. To accomplish the > same, are there alternatives to iFrames? > > Thanks! > > Server Side includes (google: ssi) and <div>'s with scrolling turned on. -- x theSpaceGirl (miranda) # lead designer @ http://www.dhnewmedia.com # # remove NO SPAM to email, or use form on website # |
|
|
|
#8 |
|
Posts: n/a
|
Thanks for the suggestion.
"SpaceGirl" <> wrote in message news:... > Ben Falcon wrote: >> I use iFrames to embed html pages within a main page. To accomplish the >> same, are there alternatives to iFrames? >> >> Thanks! >> >> > > Server Side includes (google: ssi) and <div>'s with scrolling turned on. > > -- > > > x theSpaceGirl (miranda) > > # lead designer @ http://www.dhnewmedia.com # > # remove NO SPAM to email, or use form on website # -- ELKNews FREE Edition - Empower your News Reader! http://www.atozedsoftware.com |
|
|
|
#9 |
|
Posts: n/a
|
"the idiot" <> wrote in message news:... > > scrolling div? Thank you. -- ELKNews FREE Edition - Empower your News Reader! http://www.atozedsoftware.com |
|