logout.jsp

来自「一个用jsp写的完整的论坛源代码」· JSP 代码 · 共 12 行

JSP
12
字号
<%@include file="INC/const.jsp"%>
<%
	try{
		SkinUtil.userLogout(response,request);
		response.sendRedirect("index.jsp");
	}
	catch(Exception e){
		e.printStackTrace();
		response.sendRedirect("index.jsp");
	}
	
%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?