|
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

|