日期:2014-05-17  浏览次数:20898 次

新手问题(谁知道这几句话是什么意思?)
MM_editAction   =   CStr(Request.ServerVariables( "SCRIPT_NAME "))
If   (Request.QueryString   <>   " ")   Then
    MM_editAction   =   MM_editAction   &   "? "   &   Server.HTMLEncode(Request.QueryString)
End   If

------解决方案--------------------
比如:http://www.aaa.com/aa.asp?a=1
Request.ServerVariables( "SCRIPT_NAME ")= "/aa.asp "
Request.QueryString= "?a=1 "

------解决方案--------------------
http://zhidao.baidu.com/question/8168426.html
------解决方案--------------------
Request.ServerVariables( "Script_Name ")
执行脚本的名称
Server.HTMLEncode
编码
------解决方案--------------------
比如:http://www.aaa.com/aa.asp?a=1
Request.ServerVariables( "SCRIPT_NAME ")= "/aa.asp "
Request.QueryString= "?a=1 "

Request.ServerVariables( "Script_Name ") 执行脚本的名称
Server.HTMLEncode编码