?? cookie.jsp
字號:
<%@ page contentType="text/html;charset=GBK"%>
<%@ page import ="net.acai.util.GCookie,
net.acai.forum.*,
java.util.Hashtable"%>
<%
Cookie UJBBUNameCK=GCookie.getCookieValue(request,"UJBBUName");
Cookie UJBBUPSWCK=GCookie.getCookie(request,"UJBBUPSW");
if(UJBBUNameCK==null||UJBBUPSWCK==null)
{
out.println("轉向登陸地頁面");
response.sendRedirect("login.jsp");
}
else
{
String username=UJBBUNameCK.getValue();
String password=UJBBUPSWCK.getValue();
response.sendRedirect("checklogin.jsp?username="+username+"&password="+password);
}
%>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -