• 不断学习才有回报,学无止境!

PHP、JSP、ASP获取前一个页面的URl

PHP技术和开发 箭翎 1594次浏览 0个评论 扫描二维码

这个是网上的,版权属于原作者所有!

PHP

$_SERVER[‘HTTP_REFERER’];

例子

index.php

<?php

/*

* To change this template, choose Tools | Templates

* and open the template in the editor.

*/

?>

<html>

<head><title>frist page</title></head>

<body>

<form action=”test02.php” mrthod=”post” >

message<input type=”text” name=”name” value=”123456″ ></input>

<input type=”submit” value=”submit” ></input>

</form>

</body>

</html>

Test02.php

<?php

/*

* To change this template, choose Tools | Templates

* and open the template in the editor.

*/

echo $_SERVER[‘HTTP_REFERER’];

?>

JSP

request.getHeader(“Referer”);

例子

index.jsp

<%–

Document   : index

Created on : 2011-11-2, 9:54:43

Author     : admin

–%>

 

<%@page contentType=”text/html” pageEncoding=”UTF-8″%>

<!DOCTYPE html>

<html>

<head>

<meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8″>

<title>first page</title>

</head>

<body>

<form action=”test01.jsp” method=”post” >

massage<input type=”text” name=”name” value=”massage” ></input>

<input type=”submit” value=”submit” ></input>

</form>

</body>

</html>

test01.jsp

<%–

Document   : test01

Created on : 2011-11-2, 9:57:05

Author     : admin

–%>

<%@page contentType=”text/html” pageEncoding=”UTF-8″%>

<%

String url = request.getHeader(“Referer”);

out.println(url);

%>

ASP

<%=Request.ServerVariables( “HTTP_REFERER “)%>

例子

index.asp

<html>

<head>

<title>frist page</title>

</head>

<body>

<form action=”test.asp” method=”post” >

massage<input type=”text” name=”name” value=”message” />

<input type=”submit” value=”submit”>

</form>

</body>

</html>

test.asp

<html>

<head>

<title></title>

</head>

<%=Request.ServerVariables( “HTTP_REFERER “)%>

<body>

<%=url%>

</body>

</html>


箭翎 , 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明PHP、JSP、ASP获取前一个页面的URl
喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址