Hi,every one,
I am doing a mock exam(Whizlabs) on SCWCD.there is one problem confusing me.
<=================================
q:
which is correct way to pass parameter to a dynamically included page?
A:
a....
b....
c.<
jsp:include page="includedPage.jsp">
<jsp
aram>
<param:name>paramName</param:name>
<param:value>paramValue</param:value>
<jsp
aram>
</jsp:include>
d.<jsp:include page="includedPage.jsp">
<jsp
aram name="paramName" value="paramValue">
</jsp:include>
e....
=======================>>
I omit the answers have obvious mistakes,I think d has no problem, and c is wrong: its tag <jsp
aram> is not end;
but the answer is c.is this answer right?