PC Review
Forums
Newsgroups
Microsoft Word
Microsoft Frontpage
Can I show an external website on the pages of my website
Forums
Newsgroups
Microsoft Word
Microsoft Frontpage
Can I show an external website on the pages of my website
![]() |
Can I show an external website on the pages of my website |
|
|
Thread Tools | Rate Thread |
|
|
#1 |
|
Guest
Posts: n/a
|
I have a client who rents out a rental property. On one page of the website,
he wants it to be a "live" view of the renters.org calendar URL that shows what days the property is available and unavailable. I thought we would have to just link to it externally, have it open in a new window, and then close that window to return to our site. On another note, I never use frames (always included content) - Should I create a frames page for that page (which I'm assuming will allow me to break up that page and bring in external content) or is there a better way (so that I can avoid frames?) Thanks!! Beverly |
|
|
|
#2 |
|
Guest
Posts: n/a
|
On Sun, 19 Nov 2006 07:46:02 -0800, Beverly-Texas
<BeverlyTexas@discussions.microsoft.com> wrote: >I have a client who rents out a rental property. On one page of the website, >he wants it to be a "live" view of the renters.org calendar URL that shows >what days the property is available and unavailable. I thought we would have >to just link to it externally, have it open in a new window, and then close >that window to return to our site. On another note, I never use frames >(always included content) - Should I create a frames page for that page >(which I'm assuming will allow me to break up that page and bring in external >content) or is there a better way (so that I can avoid frames?) > Beverly, I would use one of two approaches: 1. Just link to the page in a new window. 2. Programmatically create an HTTP request and parse the result to display what you want. If you use option 2, you'll want to check with the content owner to get permission (even if it's not required, out of courtesy) and give them credit on the site. Jim Cheshire Jimco Software and Books http://www.jimcosoftware.com http://www.jimcobooks.com ----------------------------------------------- Read our new article on moving from FrontPage to Expression Web at http://www.jimcobooks.com. Author: Special Edition Using Microsoft Expression Web (Releasing soon!) Book includes a CD with FREE FULL VERSIONS of: DHTML Menu Builder LITE Edition (www.dhtmlmenubuilder.com) The Logo Creator (www.thelogocreator.com) |
|
|
|
#3 |
|
Guest
Posts: n/a
|
Thanks Jim - I would prefer not to have the link open in a new window. Can
you explain further # 2 or show me where I can read up more on it? Thanks! "Jim Cheshire (Jimco Software)" wrote: > On Sun, 19 Nov 2006 07:46:02 -0800, Beverly-Texas > <BeverlyTexas@discussions.microsoft.com> wrote: > > >I have a client who rents out a rental property. On one page of the website, > >he wants it to be a "live" view of the renters.org calendar URL that shows > >what days the property is available and unavailable. I thought we would have > >to just link to it externally, have it open in a new window, and then close > >that window to return to our site. On another note, I never use frames > >(always included content) - Should I create a frames page for that page > >(which I'm assuming will allow me to break up that page and bring in external > >content) or is there a better way (so that I can avoid frames?) > > > > Beverly, > > I would use one of two approaches: > > 1. Just link to the page in a new window. > 2. Programmatically create an HTTP request and parse the result to > display what you want. > > If you use option 2, you'll want to check with the content owner to > get permission (even if it's not required, out of courtesy) and give > them credit on the site. > > Jim Cheshire > Jimco Software and Books > http://www.jimcosoftware.com > http://www.jimcobooks.com > ----------------------------------------------- > Read our new article on moving from FrontPage > to Expression Web at http://www.jimcobooks.com. > > Author: > Special Edition Using Microsoft Expression Web (Releasing soon!) > > Book includes a CD with FREE FULL VERSIONS of: > DHTML Menu Builder LITE Edition (www.dhtmlmenubuilder.com) > The Logo Creator (www.thelogocreator.com) > > |
|
|
|
#4 |
|
Guest
Posts: n/a
|
Try this:
<iframe src="[address of other page, location]" height ="[defined by you]", width="[defined by you]" /> ------------------------------------------------------------------------------------------------------------------------ This post is copyrighted © in name of TextosImaginaveis<http://www11.asphost4free.com/textosimaginaveis> TextosImaginaveis © 2005-2006 "Beverly-Texas" <BeverlyTexas@discussions.microsoft.com> escreveu na mensagem news:730F138C-87AD-41F1-924D-86CB98B76206@microsoft.com... > Thanks Jim - I would prefer not to have the link open in a new window. > Can > you explain further # 2 or show me where I can read up more on it? > Thanks! > > "Jim Cheshire (Jimco Software)" wrote: > >> On Sun, 19 Nov 2006 07:46:02 -0800, Beverly-Texas >> <BeverlyTexas@discussions.microsoft.com> wrote: >> >> >I have a client who rents out a rental property. On one page of the >> >website, >> >he wants it to be a "live" view of the renters.org calendar URL that >> >shows >> >what days the property is available and unavailable. I thought we would >> >have >> >to just link to it externally, have it open in a new window, and then >> >close >> >that window to return to our site. On another note, I never use frames >> >(always included content) - Should I create a frames page for that page >> >(which I'm assuming will allow me to break up that page and bring in >> >external >> >content) or is there a better way (so that I can avoid frames?) >> > >> >> Beverly, >> >> I would use one of two approaches: >> >> 1. Just link to the page in a new window. >> 2. Programmatically create an HTTP request and parse the result to >> display what you want. >> >> If you use option 2, you'll want to check with the content owner to >> get permission (even if it's not required, out of courtesy) and give >> them credit on the site. >> >> Jim Cheshire >> Jimco Software and Books >> http://www.jimcosoftware.com >> http://www.jimcobooks.com >> ----------------------------------------------- >> Read our new article on moving from FrontPage >> to Expression Web at http://www.jimcobooks.com. >> >> Author: >> Special Edition Using Microsoft Expression Web (Releasing soon!) >> >> Book includes a CD with FREE FULL VERSIONS of: >> DHTML Menu Builder LITE Edition (www.dhtmlmenubuilder.com) >> The Logo Creator (www.thelogocreator.com) >> >> |
|
|
|
#5 |
|
Guest
Posts: n/a
|
On Sun, 19 Nov 2006 10:44:01 -0800, Beverly-Texas
<BeverlyTexas@discussions.microsoft.com> wrote: >Thanks Jim - I would prefer not to have the link open in a new window. Can >you explain further # 2 or show me where I can read up more on it? Thanks! > Well, it explains on what technology you want to use. For example, you could use ASP.NET and create a new HttpWebRequest. The response would be the HTML code from the request which you could then parse using Regular Expressions to get the info you need. Keep in mind that this isn't a trivial thing and will require programming. The Microsoft Developer Network (msdn.microsoft.com) is the best resource for more information. Jim Cheshire Jimco Software and Books http://www.jimcosoftware.com http://www.jimcobooks.com ----------------------------------------------- Read our new article on moving from FrontPage to Expression Web at http://www.jimcobooks.com. Author: Special Edition Using Microsoft Expression Web (Releasing soon!) Book includes a CD with FREE FULL VERSIONS of: DHTML Menu Builder LITE Edition (www.dhtmlmenubuilder.com) The Logo Creator (www.thelogocreator.com) |
|
|
|
#6 |
|
Guest
Posts: n/a
|
On Sun, 19 Nov 2006 13:12:20 -0600, "Jim Cheshire (Jimco Software)"
<contactme@mysite.com> wrote: >On Sun, 19 Nov 2006 10:44:01 -0800, Beverly-Texas ><BeverlyTexas@discussions.microsoft.com> wrote: > >>Thanks Jim - I would prefer not to have the link open in a new window. Can >>you explain further # 2 or show me where I can read up more on it? Thanks! >> > Bev, I realize that my previous responses were a bit nebulous, so I did some searching and turned up a pretty good article on the topic that might help you to at least decide if this is the route you want to go: http://aspnet.4guysfromrolla.com/articles/122204-1.aspx Jim Cheshire Jimco Software and Books http://www.jimcosoftware.com http://www.jimcobooks.com ----------------------------------------------- Read our new article on moving from FrontPage to Expression Web at http://www.jimcobooks.com. Author: Special Edition Using Microsoft Expression Web Book includes a CD with FREE FULL VERSIONS of: DHTML Menu Builder LITE Edition (www.dhtmlmenubuilder.com) The Logo Creator (www.thelogocreator.com) Pre-order now at http://www.jimcobooks.com |
|
|
|
#7 |
|
Guest
Posts: n/a
|
On Sun, 19 Nov 2006 19:11:42 -0000, "David PurpleBerry ASP PRO"
<rjsa@netcabo.pt> wrote: >Try this: ><iframe src="[address of other page, location]" height ="[defined by you]", >width="[defined by you]" /> > Considering the fact that the OP said she wanted to avoid frames, I don't think that will suffice. Jim Cheshire Jimco Software and Books http://www.jimcosoftware.com http://www.jimcobooks.com ----------------------------------------------- Read our new article on moving from FrontPage to Expression Web at http://www.jimcobooks.com. Author: Special Edition Using Microsoft Expression Web Book includes a CD with FREE FULL VERSIONS of: DHTML Menu Builder LITE Edition (www.dhtmlmenubuilder.com) The Logo Creator (www.thelogocreator.com) Pre-order now at http://www.jimcobooks.com |
|
|
|
#8 |
|
Guest
Posts: n/a
|
Thanks Jim. I am a bit apprehensive about this approach because I don't know
a thing about ASP. I read through the link you provided but very honestly, a lot of it is way above my head. I think I'm going to try to keep this very simple and give the frames approach a quick try and if it's not working for me, just link to it externally. Thanks for your help! "Jim Cheshire (Jimco Software)" wrote: > On Sun, 19 Nov 2006 13:12:20 -0600, "Jim Cheshire (Jimco Software)" > <contactme@mysite.com> wrote: > > >On Sun, 19 Nov 2006 10:44:01 -0800, Beverly-Texas > ><BeverlyTexas@discussions.microsoft.com> wrote: > > > >>Thanks Jim - I would prefer not to have the link open in a new window. Can > >>you explain further # 2 or show me where I can read up more on it? Thanks! > >> > > > > Bev, > > I realize that my previous responses were a bit nebulous, so I did > some searching and turned up a pretty good article on the topic that > might help you to at least decide if this is the route you want to go: > > http://aspnet.4guysfromrolla.com/articles/122204-1.aspx > > Jim Cheshire > Jimco Software and Books > http://www.jimcosoftware.com > http://www.jimcobooks.com > ----------------------------------------------- > Read our new article on moving from FrontPage > to Expression Web at http://www.jimcobooks.com. > > Author: > Special Edition Using Microsoft Expression Web > > Book includes a CD with FREE FULL VERSIONS of: > DHTML Menu Builder LITE Edition (www.dhtmlmenubuilder.com) > The Logo Creator (www.thelogocreator.com) > > Pre-order now at http://www.jimcobooks.com > > |
|
![]() |
|
| Thread Tools | |
| Rate This Thread | |
|
|

Main Page 

