スクリプトの実行を停止する

サンプルソース

<%
Response.Write "Hello World"
'---スクリプトの実行を停止---
Response.End
'---これ以降は処理されない---
Response.Write "Hello World"
%>

解説

Response.Endでスクリプトの実行を停止します。

Response.End以降の処理は実行せず、処理を停止します。




基本操作



ASPサンプル集

ファイル操作

ディクショナリ操作
<<すべてのサンプルをみる>>

ASPリファレンス

組み込みオブジェクト


Copyright (C) ASP@Workshop All rights reserved.