📄 pro2-1.jsp
字号:
<html>
<head>
<title>Example of Object</title>
<head>
<form method="post" action="pro2-1.jsp">
<p>Name:
<input type="text" name="name">
</p>
<p>Email:
<input type="text" name="email">
</p>
<p>
<input type="submit" name="submit" value="send">
</p>
</form>
<body>
Your name is:
<%out.println(request.getParameter("name"));%>
Your email is:
<%out.println(request.getParameter("email"));%>
</body>
<html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -