My.Response 对象

获取与此 Page 关联的 HttpResponse 对象。 使用此对象,可以将 HTTP 响应数据发送到客户端,并包含此响应的相关信息。

注解

My.Response 对象包含与页面关联的当前 HttpResponse 对象。

My.Response 对象仅适用于 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>

另请参阅