http://www.w3schools.com/asp/asp_ref_response.asp


ASP Response Object


ASP Response object는 서버로부터 사용자에게 output을 보내는데 사용된다.


Try it Yourself - Examples


Write text with ASP

ASP를 사용하여 text를 작성하는 방법.


Format text with HTML tags in ASP

ASP를 사용하여 text와 HTML tags를 결합하는 방법.


Redirect the user to a different URL

사용자를 다른 URL로 방향을 바꾸는 방법.


Show a random link

랜덤링크를 생성하는 방법


Controlling the buffer

buffer를 제어하는 방법.


Clear the buffer

buffer를 clear하는 방법.


End a script in the middle of processing and return the result

processing 의 중간에서 스크립트를 중단하는 방법


Set how many minutes a page will be cached in a browser before it expires

페이지가 만료되기 전 페이지가 얼마나 브라우저에 저장될 것인가를 명시하는 방법.


Set a date/time when a page cached in a browser will expire

브라우저에 저장된 페이지가 만료될 날짜/시간을 명시하는 방법


Check if the user is still connected to the server

서버에 사용자가 접속되어있는지 검사하는 방법.


Set the type of content

content의 type을 명시하는 방법.


Set the name of the character set

character set의 이름을 명시하는 방법.


Response Object


ASP Response object는 서버로부터 사용자에게 output을 보내기 위해 사용된다. 그것의 collections, properties, 그리고 methods 가 아래에 설명된다.


Collections


Collection

Description

Cookies

cookie 값을 설정한다. cookie가 존재하지 않는다면, 생성되어지고, 그리고 명시된 값을 취한다.


Properties


Property

Description

Buffer

buffer가 page output을 보여줄지의 여부를 명시.

CacheControl

proxy server가 ASP 와 그 외의 것에 의해 생성된 output을 저장할 수 있는지의 여부를 설정.

Charset

Response object안의 content-type header에 character-set의 이름을 붙인다.

ContentType

Response object에 대한 HTTP content type을 설정한다.

Expires

만료되기 전 브라우저에 얼마나 오랫동안 (분 단위) 페이지가 저장될 지를 설정한다.

ExpiresAbsolute

브라우저 안에 저장된 페이지가 만료될 날짜와 시간을 설정한다.

IsClientConnected

client가 서버로부터 접속해제 되었는지를 나타낸다.

Pics

PICS label response header에 값을 붙인다.

Status

서버로부터 반환된 status line의 값을 명시한다.


Methods


Method

Description

AddHeader

HTTP response에 새로운 HTTP header와 값을 추가한다.

AppendToLog

server log entry의 마지막에 string을 추가한다.

BinaryWrite

character conversion 없이 output에 직접 data를 쓴다.

Clear

HTML output의 buffer를 지운다.

End 

스크립트의 processing을 중단하고, 현재 결과를 반환한다.

Flush

즉시 HTML output buffer를 보낸다.

Redirect

다른 URL로 user의 방향을 변경한다.

Write

output에 명시된 string을 쓴다.


+ Recent posts