SoFunction
Updated on 2025-04-08

How to detect HTTP header information?

<html>

<head>

<title> Thousands of flowers are flyingHTTP headERSDetection< /title>

</head>

<body>

<TABLE BORDER=1>

<tr><td VALIGN=TOP><B>variable</B></td>

<td VALIGN=TOP><B>value</B></td></tr>

<% For Each key In %>

<tr>

<td><% = key %></td>

<td>

<%

If (key) = "" Then

If GetAttribute(key) = "" Then

" "

Else

GetAttribute(key)

End If

Else

(key)

End If

"</td>"

%>

</tr>

<% Next %>

</TABLE>

</body></html>

 

<%

Function GetAttribute(AttrName)

Dim AllAttrs

Dim RealAttrName

Dim Location

Dim Result

AllAttrs = ("ALL_HTTP")

RealAttrName = AttrName

Location = instr(AllAttrs, RealAttrName & ":")

If Location <= 0 Then

GetAttribute = ""

Exit Function

End If

Result = mid(AllAttrs, Location + Len(RealAttrName) + 1)

Location = instr(Result, chr(10))

If Location <= 0 Then Location = len(Result) + 1

GetAttribute = left(Result, Location - 1)

End Function

 %>