kavs,
The title variable is decalred in the JSP that incudes the header.inc file. I’m getting an error message in header.inc that title cannot be resolved.
In general we get the error ” <variable> cannot be resolved”, when we try to access a variable before declaring it.
So It could be possible that in your jsp file you are referring to the statement “<%@ include file=”header.inc” %>” which is referring “title” variable. So you should declare that “title” variable before this statement.
If this doesn’t work for you.Please send your related files.