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>
참고 항목
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET