|
Posted by Jonathan N. Little on 02/26/07 00:13
Thad wrote:
> ok...I can use an asp file to load my whole html page, no problem. The
> problem is getting the asp file to print my menu within a table cell which
> is already created by an html. Is there something wrong with the following
> code? I may have the code right but my server is not allowing my use of the
> asp file. Please let me know.
>
> asp file: test1.asp
Well if your server is the one that you are hosting
http://www.imagedgifts.com/
on then the problem is simple, that server is running Apache and not
M$'s IIS! ASP runs on Microsoft's server. With Apache if you have
server-side scripting you probably have PHP. to check create a text file
enter:
<?php phpinfo(); ?>
save and call it 'test.php'
upload to server and try it, if you have PHP it will list all the
settings...
Including with PHP is just:
....
<td id="topa">
<b>Items Menu</b>
<?php include('test1.php') ?>
...
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Navigation:
[Reply to this message]
|