login.jsp
来自「resinweb服务器源文件」· JSP 代码 · 共 29 行
JSP
29 行
<%@ page language=java import='jsp.*, java.util.*'%><head><title>Guest Book Login</title></head><body bgcolor='white'><h1>Guest Book Comments</h1><!-- use the cached included page to display the guestbook --><jsp:include page='guestbook_inc.jsp'/><hr><% if (request.getAttribute("message") != null) { %><h1 style='color : red'><%= request.getAttribute("message") %></h1><% } %><form action='<%= response.encodeURL("GuestJsp") %>' method='post'><input type=hidden name='action' value='login'><table><tr><td>Name:<td><input name='Name' value="<%= request.getAttribute("Name") %>"><tr><td>Password:<td><input name='Password' type='password'><tr><td>Hint:<td>The password is 'quidditch'<tr><td><input type=submit value='Login'></table></form></body>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?