?? loginhandler.jsp
字號:
<%
String username = request.getParameter("username");
String password = request.getParameter("password");
if ((username.equalsIgnoreCase("wrox")) &&
(password.equalsIgnoreCase("wrox"))) {
out.println("<H3>MAIN MENU</H3>");
out.println("<A href=getphonelist.jsp>Get Employee Phone No. List</a>"
+ "<BR>");
out.println("<A href=getsortedphonelist.jsp>"
+ "Get Sorted Phone No. List (Sorted by EmployeeName)</a>"
+ "<BR>");
out.println("<A href=search.jsp>Search for Phone No. List</a>"
+ "<BR>");
} else {
out.println("UserName/Password combination is incorrect !!!");
out.println("<a href=login.jsp>Try Again</a>");
}
%>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -