My.Response Nesnesi

HttpResponse ile Pageilişkilendirilmiş nesneyi alır. Bu nesne bir istemciye HTTP yanıt verileri göndermenize olanak tanır ve bu yanıtla ilgili bilgiler içerir.

Açıklamalar

My.Response nesnesi, sayfayla ilişkili geçerli HttpResponse nesneyi içerir.

My.Response Nesnesi yalnızca ASP.NET uygulamalar için kullanılabilir.

Örnek

Aşağıdaki örnek, nesneden My.Request üst bilgi koleksiyonunu alır ve ASP.NET sayfasına yazmak için nesnesini kullanır My.Response .

<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>

Ayrıca bkz.