My.Request 对象

更新:2007 年 11 月

获取所请求的页的 HttpRequest 对象。

备注

My.Request 对象包含有关当前 HTTP 请求的信息。

My.Request 对象仅对 ASP.NET 应用程序可用。

示例

下面的示例从 My.Request 对象中获取标头集合,并使用 My.Response 对象将其写入到 ASP.NET 页面。

<script runat="server">
    Public Sub ShowHeaders()
        ' Load the header collection from the Request object.
        Dim coll As System.Collections.Specialized.NameValueCollection
        coll = My.Request.Headers

        ' Put the names of all keys into a string array.
        For Each key As String In coll.AllKeys
            My.Response.Write("Key: " & key & "<br>")

            ' Get all values under this key.
            For Each value As String In coll.GetValues(key)
                My.Response.Write("Value: " & _
                    Server.HtmlEncode(value) & "<br>")
            Next
        Next
    End Sub
</script>

请参见

参考

My.Response 对象

HttpRequest