?? check.jsp.txt
字號:
<!--check.jsp文件代碼-->
<%@ page contentType="text/html; charset=gb2312" %>
<html>
<body>
<%
String name=request.getParameter("name");
String password=request.getParameter("password");
if(name.equals("Emma")&& password.equals("123456"))
{
%>
<jsp:forward page="welcome.jsp">
<jsp:param name="yourname" value="<%=name%>"/>
</jsp:forward>
<% } else { %>
<jsp:forward page="error.html"/>
<%}%>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -