<%!
String str = "prerna";
%>
<jsp:include page="index.html">
<jsp:param name="type1" value=<%=str%> >
</jsp:param>
</jsp:include>
I want to pass a java variable in the param tag,but i am not sure how to do it.
I also want to access it in index.html
.
Can anyone suggest me the way to do it ?