救命啊!关于EL表达式的问题!
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
用户名:<c:out value="${param.username}" default="none" /><br>
密码:<c:out value="${param.password}" default="none" /><br>
<form action="MyJsp.jsp" method="post">
用户名:<input type="text" name="username">
密码:<input type="password" name="password">
<input type="submit">
</form>
</body>
</html>
这个小页面中有个小问题!就是那个${param.username}" ,param是从哪儿来的啊!为什么${username} 输不出东西啊?
------解决方案--------------------是接受的參數。舉個例子。
比如我在第一個頁面P1上,有一個連接,連接到P2並且傳了參數過去,<a href="P2.jsp?m=3&n=4">
那么,在頁面p2上,我就可以通過這個語句得到兩個參數的值,${param.m},${param.n}
------解决方案--------------------${param.username} 问号传递参数
------解决方案--------------------param是EL的一个内置对象,表示request中的参数集合
param.username表示取这个集合中名称为username的值