최신 웹 개발 튜토리얼
 

ASP Status Property


<전체 응답 객체 참조

상태 속성은 서버에 의해 반환되는 상태 표시 줄의 값을 지정합니다.

Tip: 서버에 의해 반환되는 상태 표시 줄을 수정하려면이 속성을 사용합니다.

통사론

response.Status=statusdescription

매개 변수 기술
statusdescription 3 자리 번호와 그 번호에 대한 설명은, 404과 같이 찾을 수 없음.
Note: 상태 값은 HTTP 사양에 정의되어 있습니다.

<%
ip=request.ServerVariables("REMOTE_ADDR")
if ip<>"194.248.333.500" then
  response.Status="401 Unauthorized"
  response.Write(response.Status)
  response.End
end if
%>

<전체 응답 객체 참조