html如何调用引用asp?
<!--#include file="index_down.asp"-- 把html文件的后缀该成.asp的。2个页面在一个目录下面。 <!--#include file="inc/conn.asp"-- 把asp文件放在inc文件夹下 <!--#include file="inc/function.asp"--
为了保持网站的整体风格的统一,页面的尾部调用一个asp文件.由于页面是.html的,所以不能用<!--#include file=""--的方式做. 于是就用了调用的方法.
.html中调用的代码 <script type="text/javascript"src="bottom.asp"</script bottom.asp中的代码 document.write("<link href='css.css' rel='stylesheet' type='text/css' /"); document.write ("<table height='50' width='1024' background='images/bq.jpg' align='center' class='tt'<tr<td align='center' valign='middle'");
<!--#include file="inc/conn.asp"-- 把asp文件放在inc文件夹下
<!--#include file="inc/function.asp"--方法 2为了保持网站的整体风格的统一,页面的尾部调用一个asp文件.由于页面是.html的,所以不能用<!--#include file=""--的方式做.
于是就用了调用的方法.
.html中调用的代码
<script type="text/javascript"src="bottom.asp"</script
bottom.asp中的代码
document.write("<link href='css.css' rel='stylesheet' type='text/css' /");
document.write ("<table height='50' width='1024' background='images/bq.jpg' align='center' class='tt'<tr<td align='center' valign='middle'");