而在tomcat4.x版本中,只要在包含頁面中定義了<%@ page contentType="text/html; charset=gbk" %>,被包含頁面中就不能也不用再次聲明就會顯示正常的中文,否則會出現
Page directive: can't have multiple occurrences of contentType 的錯誤。
而在tomcat5.x 中,需要在被包含文件中再次聲明 <%@ page contentType="text/html; charset=gbk" %>,且這裡聲明的內容必須跟包含頁面裡聲明的項目的內容一致才行,否則會出現
Page directive: illegal to have multiple occurrences of contentType with different values 的錯誤。
如果使用<jsp:include>方式則兩個文件可以自行定義<%@ page %>裡的聲明內容。