logout.jsp

来自「一个论坛该有的功能都有」· JSP 代码 · 共 13 行

JSP
13
字号
<%@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 + -
显示快捷键?