My.Response Nesnesi
Alır HttpResponse nesnesi ile ilişkili Page.Bu nesne bir istemciye http yanıt veri göndermenize olanak sağlar ve bu yanıt hakkında bilgi içerir.
Notlar
My.Response Nesnesini içeren geçerli HttpResponse sayfa ile ilişkilendirilmiş nesne.
My.Response Nesne için yalnızca ASP.NET uygulamaları.
Örnek
Aşağıdaki örnekte üstbilgi koleksiyonundan alır My.Request nesnesi ve kullanımları My.Response asp yazmak için nesne.net sayfası.
<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>