Oggetto My.Request
Aggiornamento: novembre 2007
Ottiene l'oggetto HttpRequest per la pagina richiesta.
Note
L'oggetto My.Request contiene le informazioni relative alla richiesta HTTP corrente.
L'oggetto My.Request è disponibile solo per applicazioni ASP.NET.
Esempio
Nell'esempio riportato di seguito viene ottenuto l'insieme di intestazioni dall'oggetto My.Request e viene utilizzato l'oggetto My.Response per scriverlo nella pagina ASP.NET.
<script >
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>