Redirect

URLリダイレクト


文法
Response.Redirect URL


パラメータ
URL : 移動先URL


機能説明
指定したURL(ファイル)へページを移動します


使用例
<% 'ユーザID未入力ならログイン画面に移動します Dim UserID UserID = "" if UserID = "" then Response.Redirect "login.asp" End If %>
Topへ