Ajuda com erro

alguem pode me ajudar com esse erro?

org.apache.jasper.JasperException: <h3>Validation error messages from TagLibraryValidator for c in /index.jsp</h3><p>14: Encountered illegal body of tag "c:import" tag, given its attributes.</p><p>19: Encountered illegal body of tag "c:import" tag, given its attributes.</p>
	org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:51)
	org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:409)
	org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:74)
	org.apache.jasper.compiler.Validator.validateXmlView(Validator.java:1823)
	org.apache.jasper.compiler.Validator.validateExDirectives(Validator.java:1769)
	org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:198)
	org.apache.jasper.compiler.Compiler.compile(Compiler.java:347)
	org.apache.jasper.compiler.Compiler.compile(Compiler.java:327)
	org.apache.jasper.compiler.Compiler.compile(Compiler.java:314)
	org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:592)
	org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:326)
	org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:313)
	org.apache.jasper.servlet.JspServlet.service(JspServlet.java:260)
	javax.servlet.http.HttpServlet.service(HttpServlet.java:717)


usei a tag import assim:



<c:import url="/Fragment1.jsp"  var="var" >
			        ${var.f1}
			     </c:import>
			       
			     <c:import url="/Fragment2.jsp" var="var" >
			        ${var.f2}
			     </c:import>

Só pra acompanhar, também quero saber uma solução para este problema.

tente assim:

[code]<c:import url="/Fragment1.jsp" var=“f1” />
${f1}

<c:import url="/Fragment2.jsp" var=“f2” />
${f2}[/code]

nada mudou
continua o mesmo erro