当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > 列出asp+中所有request 的属性和数值

ASP.NET
细细品味ASP.NET(一)
细细品味ASP.NET(二)
细细品味ASP.NET(三)
细细品味ASP.NET(四)
细细品味ASP.NET(五)
用asp.net和xml做的新闻更新系统(1)
用asp.net和xml做的新闻更新系统(2)
用asp.net和xml做的新闻更新系统(3)
十天学会ASP.net(1)
十天学会ASP.net(2)
十天学会ASP.net(3)
十天学会ASP.net(4)
十天学会ASP.net(5)
十天学会ASP.net(6)
十天学会ASP.net(7)
十天学会ASP.net(8)
十天学会ASP.net(9)
十天学会ASP.net(10)
ASP.NET创建XML Web服务全接触(1)
ASP.NET创建XML Web服务全接触(2)

ASP.NET 中的 列出asp+中所有request 的属性和数值


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 159 ::
收藏到网摘: n/a

/*
豆腐制作 都是精品
http://www.asp888.net 豆腐技术站
如转载 请保留这个版权信息
*/
呵呵,这个程序大家看看就可以了
<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>

作者:豆腐()