Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

To include another file in JSP, we use the @include tag

<%@ include file="NameOfFile"%>

In my case i want to include a html file whose name will known during the run-time - i,e from Database.

How can I do this in JSP?

share|improve this question

1 Answer

up vote 3 down vote accepted

simply using jsp:include :

<jsp:include page="<%= htmlFileName %>" />

It works in my project where the file is stored in session to reload correctly the part updated with ajax

share|improve this answer
Thank you! I was struggling with the syntax and surfing for answers and yours was right to the point and it works for me. – mobibob Mar 7 '10 at 5:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.