<div dir="ltr" style="text-align: left;" trbidi="on">
<div dir="ltr" style="text-align: left;" trbidi="on">JSTL Param Tag is used to pass the parameters to the url. The <;c:param>; tag allows proper URL request parameter to be specified with URL and it does any necessary URL encoding required.</p>
<p> Within a <;c:param>; tag, the name attribute indicates the parameter name, and the value attribute indicates the parameter value.</p>
<p> <i><b>JSTL <;c:param>; Tag Example:</b></i></p>
<pre class="highlight" name="code"><;%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>;
<;html>;
<;head>;
<;title>;c:forTokens Tag Example<;/title>;
<;/head>;
<;body>;
<;c:url value="/footer.jsp" var="myURL">;
 <;c:param name="employeeId" value="1234"/>;
 <;c:param name="employeeName" value="Dinesh"/>;
<;/c:url>;
<;c:import url="${myURL}"/>;
<;/body>;
<;/html>;
</pre>
<p>
As you can see above, JSTL Param Tag is being used within <;c:url>; tag. In the <;c:param>; tag, name attribute is used to define the parameter name and value attribute is used to set the value of the parameter.</p>
<p>
<b>Attributes of <i><;c:forTokens>;</i> tag are:</b></p>
<p><b>Required Attributes:</b></p>
<p> ; ; ; ; ;<b> 1. name:</b>This attribute provides name of the query string parameter.</p>
<p><b>Optional Attributes:</b></p>
<p> ; ; ; ; ;<b> ; 1. value: </b>This attribute provides value of the parameter.</div>
<p></p>
<div style="background-color: pink; border-width: thin; text-align: center;"><b><;<;<a href="https://dineshonjava.com/2013/10/jstl-fortokens-tag.html">Previous</a> <;<; ; ; || <a href="https://dineshonjava.com/2013/10/jsp-standard-tag-library-jstl-tutorial.html">Index </a>||  ; >;>;<a href="https://dineshonjava.com/2013/10/jstl-url-tag.html">Next</a> >;>;</b></div>
<p>
</div>
<div class="wp-post-navigation"> 
									 <div class="wp-post-navigation-pre"> 
									 <a href="https://dineshonjava.com/jstl-fortokens-tag/">Previous</a> 
									 </div> 
									 <div class="wp-post-navigation-next"> 
									 <a href="https://dineshonjava.com/jstl-url-tag/">Next</a> 
									 </div> 
									</div>
<script type="text/javascript">
jQuery(document).ready(function($) {
 $.post('https://dineshonjava.com/wp-admin/admin-ajax.php', {action: 'mts_view_count', id: '310'});
});
</script>
Strategy Design Patterns We can easily create a strategy design pattern using lambda. To implement…
Decorator Pattern A decorator pattern allows a user to add new functionality to an existing…
Delegating pattern In software engineering, the delegation pattern is an object-oriented design pattern that allows…
Technology has emerged a lot in the last decade, and now we have artificial intelligence;…
Managing a database is becoming increasingly complex now due to the vast amount of data…
Overview In this article, we will explore Spring Scheduler how we could use it by…