Hi ,
I have asp page with many includes files , like connection, left and center.
I would like to replace my with iframe
my page is look like
<body>
<!--#include file="conn.asp" -->
<!--#include file="leftside. asp" -->
<!--#include file="center.as p" -->
<!--#include file="footer.as p" -->
<!--#include file="connclose .asp" -->
</body>
I want to replace <!--#include file="center.as p" --> to
<iframe src="center.asp " width="755px" height="100%" scrolling="no" frameborder="0" ></iframe>
but when I replace it with iframe doest not get connection string from conn.asp and therfore the center.asp not able to get data from database .
Please help
I have asp page with many includes files , like connection, left and center.
I would like to replace my with iframe
my page is look like
<body>
<!--#include file="conn.asp" -->
<!--#include file="leftside. asp" -->
<!--#include file="center.as p" -->
<!--#include file="footer.as p" -->
<!--#include file="connclose .asp" -->
</body>
I want to replace <!--#include file="center.as p" --> to
<iframe src="center.asp " width="755px" height="100%" scrolling="no" frameborder="0" ></iframe>
but when I replace it with iframe doest not get connection string from conn.asp and therfore the center.asp not able to get data from database .
Please help
Comment