> Do you perhaps no a way of copying content from a frame to a layer. Has to
> work in NN as well so use of innerHTML is out of the question.
 
Il Maestro came up with this:
http://www.mail-archive.com/[email protected]/msg01832.html
See the discussion here:
http://www.mail-archive.com/cgi-bin/htsearch?method=and&format=short&config=dynapi-dev_lists_sourceforge_net&restrict=&exclude=&words=External+loading+trick+-+advanced
 
 
Or you can have your serverside app return the page as a one-line variable in the hidden frame:
 
<body><script defer>
myContent="<body>blah blah </body>"
</script></body>
 
And in your page you can of course reference the value:
var myContent=parent.hiddenframe.myContent
 
or something like that.
Maybe someone else knows other ways...
 
Richard.
ps. if you end up making some examples of this, I'd be glad to add them to the rest.
 
----- Original Message -----
From: "van Soest, Berno" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 06, 2001 12:05 PM
Subject: RE: [Dynapi-Help] setURL in combination with Lotus Domino

> Richard,
>
> Thanks for you reply. In my case everything will be in the same domain. That
> is, the domino server.
> Under IE it is indeed not possible to load a URL from a diffrent domain.
> This is possible in NN.
> I got a working example that uses ASP on IIS.
> Do you perhaps no a way of copying content from a frame to a layer. Has to
> work in NN as well so use of innerHTML is out of the question.
> Thanks in advance,
>
> Berno van Soest
>
>
> -----Original Message-----
> From: Richard Bennett [mailto:[EMAIL PROTECTED]]
> Sent: Friday, 06 April, 2001 01:58
> To:
[EMAIL PROTECTED]
> Subject: Re: [Dynapi-Help] setURL in combination with Lotus Domino
>
>
> Welcome,
> AFAIK you *can not* get the html from a frame containing a page from another
> domain.
> I think the only way to do this, is to buffer the page in a serverside
> page - see this for an ASP example:
>
http://www.ashleyit.com/rs/jsrs/test.htm
> I'm hoping to make the PHP version when time allows.
> I hope I understood your question.
>
> Cheers,
> Richard Bennett
>
>
[EMAIL PROTECTED]
> www.richardinfo.com
> (Everything running on, and ported to the 19/12/2000 snapshot of DynAPI2)
> visit the DynAPI homepage (and FAQ) ::
>
http://dynapi.sourceforge.net/dynapi/index.php?menu=1
> Browse (and search) the mailinglist here:
>
http://www.mail-archive.com/index.php3?hunt=dynapi
>
>
> ----- Original Message -----
> From: "van Soest, Berno" <
[EMAIL PROTECTED]>
> To: <
[EMAIL PROTECTED]>
> Sent: Thursday, April 05, 2001 5:06 PM
> Subject: [Dynapi-Help] setURL in combination with Lotus Domino
>
>
> > Hi,
> >
> > I'm having a problem with using setURL to retrieve info from a Lotus
> Domino
> > server.
> > I tested my app local and I succeeded in retrieving info from an IIS
> server
> > using ASP.
> > A brief description of the app:
> >
> > I'm using 2 layers. The actual content gets loaded in the lower  frame. If
> > the content of the lower frame changes, I retrieve it's location and use
> > this a the parameter for
> > setURL. Everything works like a charm using my local web server. However
> > when I try this with links to Domino nothing happens, no errors, no
> > warnings, no nothing.
> > I also tried loading file directly from the adress bar in the browser.
> > If I do not specify a protocol and domain it works
> > javascript:window.upper.content.setURL("1.html")
> > where upper is the name of the frame and content is the name of the layer
> > If I DO specify protocol and domain
> >
> javascript:window.upper.content.setURL("
http://localhost\amersfoortse\1.html
> > ")
> > depending on using IE or NN:
> > in IE I get  a permission denied or nothing happens.
> > in NN the proxy authentication window pops up, I supply userID and
> password
> > and it works. That is if NN don't crash, I mostly overwrites the complete
> > frame and not just the layer. That's the reason I'm loading it in the
> lower
> > frame first.
> >
> > If you can help me with this it is greatly appreciated.
> >
> > If this can't be used is there a way to retrieve the content of the lower
> > frame any other way.
> > In IE I could get the innerHTML of lower frame but NN doesn't have
> innerHTML
> > properties.
> >
> > Thanks in advance for any info,
> >
> > Berno van Soest.
> >
> > _______________________________________________
> > Dynapi-Help mailing list
> >
[EMAIL PROTECTED]
> > http://lists.sourceforge.net/lists/listinfo/dynapi-help
> >
>
>
> _______________________________________________
> Dynapi-Help mailing list
>
[EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/dynapi-help
>
> _______________________________________________
> Dynapi-Help mailing list
>
[EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/dynapi-help
>

Reply via email to