function getQuery(name)
{
//javascript获取url地址栏中的参数的方法。
var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)");
var r = window.location.search.substr(1).match(reg);
if (r!=null)
return unescape(r[2]);
return null;
}
javascript读取地址栏中的参数,javascript中好像没有专门的获取的东东
function Savecookie(cookieName, cookieValue)
{
//写入
cookies if(!cookieName) return;
var expires = new Date();
expires.setTime(expires.getTime() + 365 * 24 * 60 * 60 * 1000);
var cValue = cookieName + "=" + cookieValue + ";
expires=" + expires.toGMTString() + "; path=/; domain=.baidu.c...
Request.ServerVariables("Url") 返回服务器地址
Request.ServerVariables("Path_Info") 客户端提供的路径信息
Request.ServerVariables("Appl_Physical_Path") 与应用程序元数据库路径相应的物理路径
Request.ServerVariables("Path_Translated") 通过由虚拟至物理的映射后得到的路径
Request.ServerVariables("Script_Name") 执行脚本的名称
Request.ServerVariables("Quer...