时间:2021-04-16
以下是ASP程序显示所有环境变量的源码:
<%@Language="VBScript"%>
<%
' This script was obtained from the Infinite Monkeys Code library at http://infinitemonkeys.atrax.co.uk' to re-use, you must keep this text block intact
' copyright (c) Jason Brown/Atrax Internet 2000
' Complete file - should be saved with a .asp extension
dim Header, Footer
header = "<table border=""1"" align=""center"" width=""400"">"
footer = "</table>"
Response.Write("cookies" & header)
for each item in Request.Cookies
Response.Write("<tr><td>" & item & "</td><td>" & Request.Cookies(item) & "</td>") next
Response.Write(footer & "server vars" & header)
for each item in request.servervariables
Response.Write("<tr><td>" & item & "</td><td>" & Request.ServerVariables(item) & "</td></tr>")next
response.write(footer & "session contents" & header)
for each item in session.contents
Response.Write("<tr><td>" & item & "</td><td>" & session(item) & "</td></tr>")next
response.write(footer & "application contents" & header)
'if Len(application.contents) = 0 then
for each item in application.contents
Response.Write("<tr><td>" & item & "</td><td>" & application(item) & "</td></tr>")next
%>
<table border="0">
<tr><td><b>Script engine : </td>
<td><%= scriptengine() %></td>
<td><%= scriptenginemajorversion() %>:</td>
<td><%=scriptengineminorversion() %></td>
<td><%= scriptenginebuildversion() %></td></tr></table>
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
查看环境变量查看某一环境变量:比如我们需要查看HOME这个环境变量,我们可以在shell下直接输入echo$HOME,我们可以把所有的环境变量和环境变量的值都打
简单介绍下功能吧:使用了ASP的一个对象ServerVariables(服务器环境变量),通过这个环境变量可以获取到真正的下载地址再通过一些简单的VBS内置函数
Proxy的设置urllib2默认会使用环境变量http_proxy来设置HTTPProxy。如果想在程序中明确控制Proxy而不受环境变量的影响,可以使用下面
前言有时候我们需要在程序运行的时候对程序设置环境变量,恰巧我也遇到了这个问题,所以在此记录一下IDEA是如何设置环境变量的。作用-Dproperty=Value
在Java的学习中,涉及到两个系统环境变量path和classpath一.path环境变量path环境变量是系统环境变量的一种,它用于保存一系列的路径,每个路径