ETag => "74a2fb97f32ca1:394d" GoalEver.com - Technology to achieve Goal Ever
Variable Name Value
ALL_HTTP HTTP_CACHE_CONTROL:no-cache HTTP_CONNECTION:close HTTP_PRAGMA:no-cache HTTP_ACCEPT:text/html,application/xhtml+xml,text/xml;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 HTTP_ACCEPT_CHARSET:ISO-8859-1,utf-8;q=0.7,*;q=0.7 HTTP_ACCEPT_ENCODING:gzip HTTP_ACCEPT_LANGUAGE:en-us,en;q=0.5 HTTP_HOST:www.goalever.com HTTP_USER_AGENT:CCBot/1.0 (+http://www.commoncrawl.org/bot.html) HTTP_X_CC_ID:ccc03-02
ALL_RAW Cache-Control: no-cache Connection: close Pragma: no-cache Accept: text/html,application/xhtml+xml,text/xml;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Accept-Encoding: gzip Accept-Language: en-us,en;q=0.5 Host: www.goalever.com User-Agent: CCBot/1.0 (+http://www.commoncrawl.org/bot.html) x-cc-id: ccc03-02
APPL_MD_PATH /LM/W3SVC/4873/Root
APPL_PHYSICAL_PATH C:\Inetpub\vhosts\goalever.com\httpdocs\
AUTH_PASSWORD
AUTH_TYPE
AUTH_USER
CERT_COOKIE
CERT_FLAGS
CERT_ISSUER
CERT_KEYSIZE
CERT_SECRETKEYSIZE
CERT_SERIALNUMBER
CERT_SERVER_ISSUER
CERT_SERVER_SUBJECT
CERT_SUBJECT
CONTENT_LENGTH 0
CONTENT_TYPE
GATEWAY_INTERFACE CGI/1.1
HTTPS off
HTTPS_KEYSIZE
HTTPS_SECRETKEYSIZE
HTTPS_SERVER_ISSUER
HTTPS_SERVER_SUBJECT
INSTANCE_ID 4873
INSTANCE_META_PATH /LM/W3SVC/4873
LOCAL_ADDR 209.59.178.201
LOGON_USER
PATH_INFO /404.asp
PATH_TRANSLATED C:\Inetpub\vhosts\goalever.com\httpdocs\404.asp
QUERY_STRING 404;http://www.goalever.com:80/robots.txt
REMOTE_ADDR 38.107.191.105
REMOTE_HOST 38.107.191.105
REMOTE_USER
REQUEST_METHOD GET
SCRIPT_NAME /404.asp
SERVER_NAME www.goalever.com
SERVER_PORT 80
SERVER_PORT_SECURE 0
SERVER_PROTOCOL HTTP/1.1
SERVER_SOFTWARE Microsoft-IIS/6.0
URL /404.asp
HTTP_CACHE_CONTROL no-cache
HTTP_CONNECTION close
HTTP_PRAGMA no-cache
HTTP_ACCEPT text/html,application/xhtml+xml,text/xml;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
HTTP_ACCEPT_CHARSET ISO-8859-1,utf-8;q=0.7,*;q=0.7
HTTP_ACCEPT_ENCODING gzip
HTTP_ACCEPT_LANGUAGE en-us,en;q=0.5
HTTP_HOST www.goalever.com
HTTP_USER_AGENT CCBot/1.0 (+http://www.commoncrawl.org/bot.html)
HTTP_X_CC_ID ccc03-02
(GoalEver Server)
< % ' Get the Id from the URL Encoded String Id = Request("Id"); ' Create a SQL Connection Set Conn = Server.CreateObject("ADODB.Connection") Conn.Open "Example","sa","" ' Create SQL Statement sql = "SELECT LastModified, Text FROM tblContent WHERE Id=" & Id ' Execute SQL Statement Set RS = Conn.Execute(sql) ' Assign result set to variables strText=RS("Text") ' Adjust From PST to GMT dtModified = DateAdd ("h",7,dtModified) If (Len(Request.ServerVariables("HTTP_IF_MODIFIED_SINCE"))) Then strIfModifiedSince=Request.ServerVariables("HTTP_IF_MODIFIED_SINCE") nIndex=InStr(1,strIfModifiedSince,";",vbTextCompare) If (nIndex>0) Then strIfModifiedSince=Left(strIfModifiedSince,nIndex-5) Else strIfModifiedSince=Left(strIfModifiedSince,Len(strIfModifiedSince)-5) End If nIndex=InStr(1,strIfModifiedSince," ",vbTextCompare) If (nIndex>0) Then strIfModifiedSince=Right(strIfModifiedSince,Len(strIfModifiedSince)-nIndex) End If dtDate=CDate(strIfModifiedSince) If (Modified<=dtDate) Then Response.Clear Response.Status = "304 Not Modified" Response.End EndIIf End If dtModified=RS("LastModified") ' Clean Up RS.close ConnClose ' Construct Last Modified String strModifed= WeekDayName(WeekDay(dtModified),TRUE) &_ ", " & Day(dtModified) & " " &_ MonthName(Month(dtModified),TRUE) &_ " " & Year(dtModified) &" "& Hour(dtModified) &_ ":" & Minute(dtModified) & ":" &_ Second(dtModified) & " GMT" % >