10f5aecb6a2100121bf89be9aff7db74
来自「使用JSP+Servlet+Hibernate+Struts实现的一个学生软件发」· 代码 · 共 28 行
TXT
28 行
<%@ page language="java" pageEncoding="ISO-8859-1"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic"%>
<html>
<head>
<title>JSP for ModifyAdminForm form</title>
</head>
<body>
<html:form action="/modifyAdmin">
<logic:notPresent name="name" scope="request">
<bean:parameter id="arg0" name="name" value=""/>
name : <bean:write name="arg0"/><br>
</logic:notPresent>
<logic:present name="name" scope="request">
name : <bean:write name="name"/><br>
</logic:present>
rePassword : <html:password property="rePassword" maxlength="16"/><html:errors property="rePassword"/><br/>
password : <html:password property="password" maxlength="16"/><html:errors property="password"/><br/>
email : <html:text property="email" maxlength="32"/><html:errors property="email"/><br/>
<html:hidden property="name" value=<%=request.getParameter("name") %>/>
<html:submit/><html:reset/>
</html:form>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?