亲宝软件园·资讯

展开

ASP 系统配置 ASP常用的系统配置函数

人气:0
想了解ASP常用的系统配置函数的相关内容吗,在本文为您仔细讲解ASP 系统配置的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:ASP,系统配置,函数,下面大家一起来学习吧。
sub SaveConfig()
 dim fso,hf
 set fso=Server.CreateObject("Scripting.FileSystemObject")
 set hf=fso.CreateTextFile(Server.mappath("../inc/config.asp"),true)
 hf.write "<" & "%" & vbcrlf
 hf.write "Const SiteName=" & chr(34) & trim(request("SiteName")) & chr(34) & "        '网站名称" & vbcrlf
 hf.write "Const SiteTitle=" & chr(34) & trim(request("SiteTitle")) & chr(34) & "        '网站标题" & vbcrlf
 hf.write "Const SiteUrl=" & chr(34) & trim(request("SiteUrl")) & chr(34) & "        '网站地址" & vbcrlf
 hf.write "%" & ">"
 hf.close
 set hf=nothing
 set fso=nothing 
end sub

加载全部内容

相关教程
猜你喜欢
用户评论