<전체 응답 객체 참조
쓰기 방법은 출력에 지정된 문자열을 씁니다.
통사론
Response.Write variant
매개 변수 | 기술 |
---|---|
variant | 필요합니다. 데이터 쓰기 |
예
예 1
<%
Response.Write "Hello World"
%>
Output:
Hello World
예 2
<%
name="John"
Response.Write(name)
%>
Output:
John
예 3
<%
Response.Write("Hello<br>World")
%>
Output:
Hello
World
<전체 응답 객체 참조