asp

位置:IT落伍者 >> asp >> 浏览文章

收藏当前页面的网址Asp代码


发布日期:2024年05月30日
 
收藏当前页面的网址Asp代码

收藏当前页面的网址asp教程代码

<%
function getip 获取ip
if requestservervariables("http_x_forwarded_for")=empty then
getip=requestservervariables("remote_addr")
else
getip=requestservervariables("http_x_forwarded_for")
end if
end function

responsewrite getip
%>

<script>
var hostname = locationhostname; //获取当前域名
var localurl = locationhref; //获取当前的url地址信息
</script>
<a href="#" onclick="thisstylebehavior=url(#default#homepage);windowexternaladdfavorite(localurlwwwasjcn)">加入收藏

</a>

上一篇:asp连接mysql数据库几款代码

下一篇:asp中isNull、isEmpty和空字符串的区别