明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學習分享的學習平臺!

列出asp+中所有request 的屬性與數(shù)值

[摘要]/*豆腐制作 都是精品http://www.asp888.net 豆腐技術站如轉(zhuǎn)載 請保留這個版權信息*/呵呵,這個程序大家看看就可以了<script language="VB&qu...
/*
豆腐制作 都是精品
http://www.asp888.net 豆腐技術站
如轉(zhuǎn)載 請保留這個版權信息
*/
呵呵,這個程序大家看看就可以了
<script language="VB" runat="server">
Sub Page_Load(Src As Object, E As EventArgs)
Dim loop1 as long
Dim loop2 As long
Dim arr1(), arr2() As String
Dim coll As NameValueCollection
coll =Request.ServerVariables
arr1 = coll.AllKeys
For loop1 = 0 To UBound(arr1)
arr2 = coll.GetValues(arr1(loop1))
Response.Write("名稱:<font color=blue>" & arr1(loop1) & "</font> 值: <font color=red>" & arr2(0) & "</font><br>")
Next loop1
end sub
</script>

作者:豆腐()