I have a simple JSP page such as:
<%--
//$Archive$
//$Author$
//$Date$
//$Log$
//$Modtime$
//$Revision$
//$Workfile$
--%>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>PETRO ADMIN Redirect</title>
</head>
<body>
<jsp:forward page="/login/login.jsp"></jsp:forward>
</body>
</html>
I have the option to collapse the head and body elements, but I cannot collapse the JSP Comment. Is this possible?
Thanks,
–Todd