⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 first.jsp

📁 一个简单的jsp程序
💻 JSP
字号:
<%@ page contentType="text/html;Charset=GB2312" %>
<html>

<body bgcolor="#99FF66">
<p>
	<%
		String id = session.getId();
		out.println("您的session对象的ID是:<br>"+id);
		String str = response.encodeRedirectURL("chaper4/tom/second.jsp");
	%>
<p>输入你的姓名链接到second.jsp
	<form action="<%=str%>" method="post" name="form">
		<input type="text" name="boy">
		<input  type="submit" value="send" name="submit">
	
	</form>

</body>

</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -