在.asp文件中引用<!--#include file="head.htm"-->后网页显示问题_百度...
发布网友
发布时间:2024-10-23 01:10
我来回答
共2个回答
热心网友
时间:2024-12-10 20:10
需要提醒你的是:
1。这样以来你的头文件<!--#include file="manage/inc/config.asp"--> 跟 <!--#include file="inc/conn.asp"--> 将无法使用了(如果你根本就不用的话,那正好)
2。如果iframe里显示的文件四周有空白,请在head.htm 跟 foot.htm 页面的 <head> 与</head> 之间插上这样一段css样式
<style type="text/css">
body{margin:0px; padding:0px;}
</style>
下面是修改后的代码:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>网上书店</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="780" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><iframe frameborder="0" scrolling="no" width="宽度自行调节" height="高度自行调节" src="head.htm"></iframe> <!--注意你的head.htm存放位置,如果是跟此页面不在同一个文件夹,请修改其路径--></td>
</tr>
</table>
<table width="780" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="left" valign="top"><p><br></p>
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tr>
<td align="center">网上书店注册条约 </td>
</tr>
<tr>
<td><iframe frameborder="0" scrolling="no" width="宽度自行调节" height="高度自行调节" src="head.htm"></iframe> <!--注意你的head.htm存放位置,如果是跟此页面不在同一个文件夹,请修改其路径--></td>
</tr>
<tr>
<td><p class="tiaofont">作为网上书店服务的用户,您有责任:<br>
<br>
◆123。<br>
<br>
◆456。 <br>
<br>
◆789。
<br>
<br>
◆您明确了解并同意,请继续注册,祝您购物愉快
</p> </td>
</tr>
<tr>
<td align="center">
<input type="submit" name="Submit" value="我同意" onClick="window.location='reg.asp'">
<input type="submit" name="Submit2" value="我不同意" onClick="window.location='index.asp'"></td>
</tr>
</table> <p> </p>
</td>
</tr>
</table>
<table width="780" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><iframe frameborder="0" scrolling="no" width="宽度自行调节" height="高度自行调节" src="foot.htm"></iframe> <!--注意你的foot.htm存放位置,如果是跟此页面不在同一个文件夹,请修改其路径--></td>
</tr>
</table>
</body>
</html>
热心网友
时间:2024-12-10 20:10
<!--#include file=""-->在asp里才能用,你保存为 .htm当然不能看了,