1.index.asp 文件 里面的代码什么意思
<!--#include file="conn.asp"-->
<!--#include file="inc/const.asp"-->
<!--#include file="common/index.asp"-->
这些如 楼上所说
Call Main()
Call TPL_Flush()
NewAsp.PageEnd()
是调的函数
2.index.html代码中引用index.asp的代码
可以不用iframe,不过要使用AJAX
<html>
<head>
<script type="text/javascript">
function loadXMLDoc()
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xml>
3.网站ASP 代码 怎么写,
<html>
<head>
</head>
<title>;搜索专栏
</title>
<body>
<table>
<tr>
<td>;在这写东西,,
</td>
</tr>
</table>
</body>
</html>
4.这个index.asp网页的代码是啥意思
<!--#include file="inc/sysconfig.asp"-->;加载一个asp文件,该文件中有asp程序。
<%
dim Arain
set Arain = new Cls_Public'这个类应该在上面加载的文件里有,你可以找找
with Arain
.html_Top_default
.html_position
.html_affiche
.boardtable
.sitefriendlink
.html_bottom_default
end with
set Arain=nothing
%>
只所以你看到这个文件很简单,而实际显示的很复杂,是因为很多程序都在那个类里呢。
转载请注明出处育才学习网 » index.asp代码怎么写