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 derfloh 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
Joined
Jan 29, 2005
Messages
38
Location
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?
 
may be you need to do a table layout first...

-DNG
 
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