Example redirection rsp

From Lianjapedia
Jump to: navigation, search

Name

example_redirection.rsp

Description

This Visual FoxPro Server Page (.rsp) demonstrates the use of the response object redirect() method for URL redirection.

Code

<%@ Language=VFP %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Lianja example - redirection</title>
</head>
<body>
<%
	response.redirect("/default.rsp")
%>
</body>