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

📄 e1066. getting a request parameter using jstl in a jsp page.txt

📁 这里面包含了一百多个JAVA源文件
💻 TXT
字号:
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: 
    <%-- 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>!

⌨️ 快捷键说明

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