#12001/11/8 13:07:38
<%@LANGUAGE="VBSCRIPT"%>
<%
' *** Validate request to log in to this site.
MM_LoginAction = Request.ServerVariables("URL")
If Request.QueryString<>"" Then MM_LoginAction = MM_LoginAction + "?" + Request.QueryString
其实我最不明白的是MM_LoginAction = Request.ServerVariables("URL")这段代码,其中的URL指向谁?MM_LoginAction = MM_LoginAction + "?" + Request.QueryString这段是什么意思?并且其中的+和?都是什么涵义?