I have a JSP containing scriplet like this:
<%
String CheckList=request.getParameter("CheckList");
String DataList=request.getParameter("DataList");
System.out.println("CheckList::" + CheckList);
System.out.println("DataList::" + DataList);
%>
The problem when I am not able to highlight matching syntax when I am selecting a string.
The problem is similar to this
I have followed all the steps and the matching syntax highlition is working perfectly on normal java code but it is not working on the JSP.