|
 |
asp_web_howto thread: Re: Can I include an ASP page within another ASP page
Message #1 by "William Meitzen" <wmeitzen@y...> on Tue, 18 Jun 2002 21:39:10
|
|
> Hello,
> I have an ASP page that generates my html page with some values from the
d> atabase. I have an include file to create my menu (HTML file) but I
have
a> nother ASP page which has to be in that result HTML page.
> Can I include an ASP page within an ASP page?
> See code below:
> <tr>
<> td>
<> !--#include file="MenuSys_en.html"-->
<> /td>
<> /tr>
> <tr>
<> td>
<> p>
<> !--#include file="StatusSystem_en.asp"-->
<> /p>
<> /td>
>
T> hank you
A> nthony
Include files work, but look up the VBScript command "execute".
Message #2 by "Gurdev Khanna" <gurdev.khanna@w...> on Sat, 15 Jun 2002 10:19:28 +0530
|
|
This is a multi-part message in MIME format.
------=_NextPart_000_002E_01C21456.21E51740
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
There are actually two ways to do that
incude virtual and include file.
You can very well include an asp page within an asp page.
Gurdev Khanna
----- Original Message -----
From: Bharat Saboo
Sent: Friday, June 14, 2002 11:16 AM
Subject: Re: Can I include an ASP page within another ASP page
yes u can
Regards,
Bharat Saboo
----- Original Message -----
From: delcyan@w...
To: ASP Web HowTo
Sent: Thursday, June 13, 2002 4:54 PM
Subject: [asp_web_howto] Can I include an ASP page within another ASP
page
Hello,
I have an ASP page that generates my html page with some values from
the
database. I have an include file to create my menu (HTML file) but I
have
another ASP page which has to be in that result HTML page.
Can I include an ASP page within an ASP page?
See code below:
<tr>
<td>
<!--#include file=3D"MenuSys_en.html"-->
</td>
</tr>
<tr>
<td>
<p>
<!--#include file=3D"StatusSystem_en.asp"-->
</p>
</td>
Thank you
Anthony
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramm
e
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramm
e
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramm
e
r-20
Message #3 by "Bharat Saboo" <bharatsaboo@h...> on Fri, 14 Jun 2002 11:16:57 +0530
|
|
This is a multi-part message in MIME format.
------=_NextPart_000_003B_01C21394.FF38DF40
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
yes u can
Regards,
Bharat Saboo
----- Original Message -----
From: delcyan@w...
To: ASP Web HowTo
Sent: Thursday, June 13, 2002 4:54 PM
Subject: [asp_web_howto] Can I include an ASP page within another ASP
page
Hello,
I have an ASP page that generates my html page with some values from the
database. I have an include file to create my menu (HTML file) but I
have
another ASP page which has to be in that result HTML page.
Can I include an ASP page within an ASP page?
See code below:
<tr>
<td>
<!--#include file=3D"MenuSys_en.html"-->
</td>
</tr>
<tr>
<td>
<p>
<!--#include file=3D"StatusSystem_en.asp"-->
</p>
</td>
Thank you
Anthony
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramm
e
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramm
e
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramm
e
r-20
Message #4 by "Schelling, Michael" <schellim@s...> on Thu, 13 Jun 2002 13:31:37 -0400
|
|
Yep, as long as it doesn't contain <html>, <title>,<body>, <meta>, etc tags.
Use a blank file with your code and other HTML tags (e.g., Table, TR, TD,
etc...) and name it StatusSystem_en.asp
-----Original Message-----
From: delcyan@w... [mailto:delcyan@w...]
Sent: Thursday, June 13, 2002 12:55 PM
To: ASP Web HowTo
Subject: [asp_web_howto] Can I include an ASP page within another ASP
page
Hello,
I have an ASP page that generates my html page with some values from the
database. I have an include file to create my menu (HTML file) but I have
another ASP page which has to be in that result HTML page.
Can I include an ASP page within an ASP page?
See code below:
<tr>
<td>
<!--#include file="MenuSys_en.html"-->
</td>
</tr>
<tr>
<td>
<p>
<!--#include file="StatusSystem_en.asp"-->
</p>
</td>
Thank you
Anthony
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=nosim/theprogramme
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=nosim/theprogramme
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=nosim/theprogramme
r-20
Message #5 by "Chris Thompson" <cthompson@n...> on Thu, 13 Jun 2002 11:31:10 -0600
|
|
Yes you can include ASP pages anywhere you want in another ASP page.
Chris
-----Original Message-----
From: delcyan@w... [mailto:delcyan@w...]
Sent: Thursday, June 13, 2002 10:55 AM
To: ASP Web HowTo
Subject: [asp_web_howto] Can I include an ASP page within another ASP
page
Hello,
I have an ASP page that generates my html page with some values from the
database. I have an include file to create my menu (HTML file) but I
have
another ASP page which has to be in that result HTML page.
Can I include an ASP page within an ASP page?
See code below:
<tr>
<td>
<!--#include file=3D"MenuSys_en.html"-->
</td>
</tr>
<tr> =09
<td>
<p> =09
<!--#include file=3D"StatusSystem_en.asp"--> =09
</p>
</td>
Thank you
Anthony
=09
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramm
e
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramm
e
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramm
e
r-20
Message #6 by delcyan@w... on Thu, 13 Jun 2002 16:54:37
|
|
Hello,
I have an ASP page that generates my html page with some values from the
database. I have an include file to create my menu (HTML file) but I have
another ASP page which has to be in that result HTML page.
Can I include an ASP page within an ASP page?
See code below:
<tr>
<td>
<!--#include file="MenuSys_en.html"-->
</td>
</tr>
<tr>
<td>
<p>
<!--#include file="StatusSystem_en.asp"-->
</p>
</td>
Thank you
Anthony
|
|
 |