java类库详细讲解

源代码在线查看: getparam.html

软件大小: 5593 K
上传用户: add505
关键词: java
下载地址: 免注册下载 普通下载 VIP

相关代码

				
				
				
				Getting a Request Parameter Using JSTL in a JSP Page
				(Java Developers Almanac Example)
				
				
				
				
				
				
								    BODY CODE  {font-family: Courier, Monospace;				           font-size: 11pt}				    TABLE, BODY				          {font-family: Verdana, Arial, Helvetica, sans-serif;				           font-size: 10pt}				    PRE   {font-family: Courier, Monospace;				           font-size: 10pt}				    H3    {font-family: Verdana, Arial, Helvetica, sans-serif;				           font-size: 11pt}				    A.eglink {text-decoration: none}				    A:hover.eglink {text-decoration: underline}				    -->
				
				
				
				
				
				The Java Developers Almanac 1.4
				
				        Order this book from Amazon.
				    
				
				
				
				
				
				
				
				
				
				
				
				Home
				    >
				    List of Packages
				    >
				    javax.servlet.jsp.jstl.core
				         [6 examples]
				        
				
				  
				    e1065.  
				    Getting a Request Parameter Using JSTL in a JSP Page
				
				When using the JSTL's expression language (see
				e1064 Enabling the JSTL Expression Language in a JSP Page), the request parameters
				are made available in the implicit object param.  This example
				demonstrates how to include the value of a request parameter from the
				query string or posted data in the generated output:
				
				
				
				    <%-- Declare the core library --%>
				    <%@ taglib uri="/WEB-INF/tld/c.tld" prefix="c" %>
				    
				    <c:choose>
				        <c:when test="${empty param.name}">
				            Please enter your name.
				        </c:when>
				        <c:otherwise>
				            Hello <b><c:out value="${param.name}" /></b>!
				        </c:otherwise>
				    </c:choose>
				
				If the page was accessed with the URL:
				
				
				    http://hostname.com/mywebapp/mypage.jsp?name=John+Smith
				
				the resulting output would be:
				
				
				    Hello <b>John Smith</b>!
				
				
				
				
				             Related Examples
				        
				
				
				
				
				e1063. 
				    Using the Java Standard Tag Library (JSTL) in a JSP Page
				
				
				
				e1064. 
				    Enabling the JSTL Expression Language in a JSP Page
				
				
				
				e1066. 
				    Saving Data Using JSTL in a JSP Page
				
				
				
				e1067. 
				    Saving and Emitting HTML Fragments Using JSTL in a JSP Page
				
				
				
				e1068. 
				    Conditionally Generating Output Using JSTL in a JSP Page
				
				
				
				
				
				
				
				
				© 2002 Addison-Wesley.
				
				
				
							

相关资源