|
ASP
ServerVariables
More detial or script code example
Myself = Request.ServerVariables("PATH_INFO")
Description: Set Myself = right now self URL

ASP
ServerVariables
More detial or script code example
ServerVariables("Query_String")
网址后面的参数(不含问号) Description: QueryString= Request.ServerVariables("Query_String")
if the URL has a "?" question mark included
the the Len(QueryString)>0
Tips: security to prevent some one to hake
your submit form Ezer suggest add a check point
to check the length of :;
Len(QueryString)
取出"?"之后的字符串
所以同理也可测其自串的长度

ASP
ServerVariables
More detial or script code example
Display all HTTP Headers
标头 Description: Display all HyperText Transfer Protocol
(HTTP) Server Headers

|