Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Mutiple include directives

Status
Not open for further replies.

vangundy

Programmer
Jan 29, 2005
38
0
0
CA
I have left.asp, main.asp and right.asp

I am having trouble having the right.asp appear on the right side of main.asp using <!--#include file="Right.asp"-->

-------- -------
- L - - R -
- E - Main.asp - I -
- F - - G -
- T - - H -
- - - T -
-------- -------

How can I do this using include directives in asp?
 
Code:
<table>
  <tr> 
    <td><!--#include file="left.asp"--></td>
    <td><!--#include file="main.asp"--> </td>
    <td><!--#include file="Right.asp"--> </td>
  </tr>
</table>

Of course you can layout the table as you wish.

Hegards,
Hameed
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top