马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
ASP一般认为只能运行在IIS上,正如前面所提到的,这并不是十分正确,事实上,ASP也能运行在Apache上。ApacheASP可在任意Apache服务器上运行有限的ASP功能,所需做的,只需打开mod_perl。函数|网站|顶级域名不论输出xxx.xxx.xxx.xxx.com.cn都能够找到他的顶级域名以下是代码:
<%
response.writegetdomain("www.5u.hk")&"<br/>"
response.writegetdomain("blog.5u.hk")&"<br/>"
response.writegetdomain("mscga.blog.5u.hk")&"<br/>"
functiongetdomain(byvaldom)’前往空则暗示域名不复合域名根请求
dimi,ext,exts
exts="com.cn,net.cn,org.cn,hk.cn,com,net,cn,hk"’复根在前,单根在后
ext=split(exts,",")
fori=0toubound(ext)
iflcase(ext(i))=right(lcase(dom),len(ext(i)))then
dimdom_ext,dom_pre
dom_ext=lcase(ext(i))
dom_pre=split(left(dom,len(dom)-len(dom_ext)-1),".")
getdomain=dom_pre(ubound(dom_pre))&"."&dom_ext
exitfunction
endif
next
getdomain=""
endfunction
%>
asp可以轻松地实现对页面内容的动态控制,根据不同的浏览者,显示不同的页面内容。而浏览者一点觉察不出来,就像为他专门制作的页面一样。使用各种各样的组件,asp可以完成无比强大的功能。 |