日期:2014-05-17 浏览次数:20729 次
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <%@ include file="checkLogin.jsp" %> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="<%=basePath%>"> <title>成功登陆</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> --> </head> <script language="JavaScript"> function stop() { <% session.setAttribute("formAction", "stop"); %> form.action = "agentsTracker"; form.submit(); } function start() { <% session.setAttribute("formAction", "start"); %> form.action = "agentsTracker"; form.submit(); } function tmp() { <% session.setAttribute("formAction", "tmp"); %> } </script> <body> <h1>欢迎您</h1> ${sessionScope.name} <form name="form" id="form" method="post" action="agentsTracker"> <input type="button" name="startBtn" onClick="start()" value="start"> <input type="button" name="stopBtn" onClick="stop()" value="stop"> <input type="submit" name="submit" value="ok"> </form> </body> </html>