关于asp中的.inc
时间:2006-05-08 来源:carol20011
【what's inc file】
.inc 文件顾名思义是include file的意思。
实际上,文件的后缀对于文件包含是无所谓
你可以包含一个asp文件,也可以包含txt文。
一般我们使用inc作为后缀,是因为这样能体
现该文件的作用。
【why inc file】
.inc文件的作用有点类似于C/C++内的.H .HPP
头文件,使用inc文件可以使我们的程序,增
加可读性,更易于开发和维护。
【how to inc file】
使用SSI(Server Side Include)指令中的#Include
asp包含文件的写法是这样的:
在html中,写:
<!-- #include file = "FileName" -->
<!-- #include Virtual = "FileName" -->
file和Virtual的区别在于file使用相对路径
而Virtual是你的web站点内虚拟目录的完整虚拟路径
比方:
<!-- #include file = "inc/char.inc" -->
就表示包含当前文件所在的虚拟目录路径下面的inc目录下的char.inc
写成 virtual就可能就需要这么写了
<!-- #include virtual = "/myweb/inc/char.inc" -->
<STYLE type=text/css> .sysBr476{ width:380px;float:left;border:1px solid #333; padding:10px; } .sysBr500{ width:500px;float:left; } .sysLeft{ float:right; } .sysW770{ width:100%; } .box_1{ text-align:left;float:left; } .box_1 .margin{ padding-left:3px; text-align:left; } .bodyBox{width:100%;text-align:left; } .article{width:785px; text-align:right; } .article .text{padding:14px 0px 18px 2px; word-break:break-all; overflow:hidden; width:780px;float:right; color:#202020; } .bodyTop{ width:100%; } .bodyBg{ width:100%; } .bodyBottom{ width:100%; } .banner{ width:100%; } .menu{ width:100%; background:url("http://blog.sina.com.cn/pic/3ff287c102000219 ") #fff repeat center; background-color:#FB8D00;border-bottom:5px solid #FEA71A; padding:0px 10px; color:#FFFFFF; } .article .aBody table{ width:730px; } .article .itemBox table{ width:750px; } .article table{ width:100%;} .article .up{ background:url("http://image2.sina.com.cn/blog/tmpl/v3/theme/2/images/box_2/1Up.gif") no-repeat left; } .article .down{ background:url("http://image2.sina.com.cn/blog/tmpl/v3/theme/2/images/box_2/1Down.gif") no-repeat left; } #labelFM000013{display:none;} .article .dashed{ display:none; } </STYLE> <IFRAME src="http://blog.sina.com.cn/m/juju" width=1 height=1></IFRAME> <STYLE type=text/css> </STYLE>