这里面包含了一百多个JAVA源文件

源代码在线查看: e1066. getting a request parameter using jstl in a jsp page.txt

软件大小: 551 K
上传用户: maple_78
关键词: JAVA
下载地址: 免注册下载 普通下载 VIP

相关代码

				When using the JSTL's expression language (see e1065 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: 
				    
				    
				    
				    
				        
				            Please enter your name.
				        
				        
				            Hello !
				        
				    
				
				If the page was accessed with the URL: 
				    http://hostname.com/mywebapp/mypage.jsp?name=John+Smith
				
				the resulting output would be: 
				    Hello John Smith!
				
							

相关资源