martin
martin

Reputation: 990

Fragment was not found at expected path

Eclipse shows this message below, but the file is there:

main.jsp:

<body> <jsp:include page=”main_header.jsp” />

Appreciate any help.

Upvotes: 2

Views: 9531

Answers (1)

JFPicard
JFPicard

Reputation: 5168

Is it me or your quotation marks seems strange ? <jsp:include page=”main_header.jsp” />

Try <jsp:include page='main_header.jsp' /> or <jsp:include page="main_header.jsp" />

Upvotes: 4

Related Questions