|
 |
aspx thread: Aspx-File in a Frame
Message #1 by "Leitner Christoph" <christoph@o...> on Fri, 22 Jun 2001 13:16:20 +0200
|
|
Hi,
when I put an aspx file to a frame it doesn't execute my code !
What I'm making wrong ??
<frameset cols=3D"328,*">
<frame name=3D"leftPart" noresize scrolling =3D"no"
src=3D"file:///C:\inetpub\wwwroot\InformationsDisplay\leftPart1.aspx">
</frameset>
Regards
Christoph
Message #2 by "Juan T. Llibre" <j.llibre@c...> on Fri, 22 Jun 2001 07:47:35 -0400
|
|
You can't use local paths for serving pages.
Try :
<frameset cols="328,*">
<frame name="leftPart" noresize scrolling ="no" src="leftPart1.aspx">
</frameset>
or, if your frameset page is in another directory :
<frameset cols="328,*">
<frame name="leftPart" noresize scrolling ="no"
src="/InformationsDisplay/leftPart1.aspx">
</frameset>
best,
Juan T. Llibre
Microsoft MVP [IIS/ASP]
http://p2p.wrox.com/subscribe.asp?list=aspx_espanol
====================================
----- Original Message -----
From: "Leitner Christoph" <christoph@o...>
To: "ASP+" <aspx@p...>
Sent: Friday, June 22, 2001 7:16 AM
Subject: [aspx] Aspx-File in a Frame
> Hi,
>
> when I put an aspx file to a frame it doesn't execute my code !
>
> What I'm making wrong ??
> <frameset cols=3D"328,*">
> <frame name=3D"leftPart" noresize scrolling =3D"no"
> src=3D"file:///C:\inetpub\wwwroot\InformationsDisplay\leftPart1.aspx">
> </frameset>
>
> Regards
>
> Christoph
>
> ---
> * Fast, Full-Featured Microsoft® Excel Web Reports & Charts!
> A breakthrough in high performance Web application development,
SoftArtisans
> ExcelWriter 1.1 supports native Excel charting, image insertion, and
> advanced functions & formatting. One click generates presentation-quality
> Excel spreadsheets-and ExcelWriter performs over 100 times faster than the
> Excel Object. Several editions, including ExcelWriterFREE, are available.
> http://www.softartisans.com/softartisans/excelwriter.html>
>
|
|
 |