dynamic attribute
hi all,
how to pass file name dynamically to the file attribute of include directive. i.e
<%@ include file="temp.jsp"%> will work.
if i pass temp.jsp through a variable it is not working.i.e
<%! String filename="temp.jsp";%>
<%@ include file='<%=filename%>' %>
passing the filename dynamically is my requirement. Even i tried by using <jsp:include>,still it's not working.
can anybody help me.
thanks in advance
raghu

