私は、Ice Faces 3、Tomcat 7.0 を使用して JSF アプリケーションに取り組んでいます。私の問題は、アプリケーションが firefox と chrome では問題なく動作するが、Internet Explorer 9 では開かないことです。これは xhtml ページです。
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"[
<!ENTITY nbsp " ">
<!ENTITY auml "ä">
<!ENTITY ouml "ö">
<!ENTITY Ouml "Ö">
<!ENTITY uuml "ü">
<!ENTITY szlig "ß">
]>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:icecore="http://www.icefaces.org/icefaces/core" xmlns:ace="http://www.icefaces.org/icefaces/components" xmlns:ice="http://www.icesoft.com/icefaces/component"
>
<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>#{msgs.MyTitle}</title>
<link rel="stylesheet" href="./css/tas.css" />
<ice:outputStyle href="./css/processbar.css" />
<script type="text/javascript" defer="defer" language="javascript" src="posadmin.js" />
</h:head>
<h:body>
<ice:panelGrid columns="1" cellspacing="0" cellpadding="0" border="0" width="100%">
***<ui:include src="head.xhtml"/>
<ui:include src="Filter.xhtml"/>
<ui:include src="admin.xhtml"/>***
</ice:panelGrid>
<ice:form id="error_form">
<ui:include src="/popups/error.xhtml"></ui:include>
</ice:form>
<ice:form id="message_form">
<ui:include src="/popups/message.xhtml"></ui:include>
</ice:form>
<ice:form id="close_form">
<ui:include src="/popups/close.xhtml"></ui:include>
</ice:form>
</h:body>
</html>
ui:include ステートメントのいずれかを削除すると
<ui:include src="head.xhtml"/>
<ui:include src="Filter.xhtml"/> or
<ui:include src="admin.xhtml"/>
上記で、ページが表示されるすべてのice:formブロックを削除します。つまり、9...誰か助けてくれませんか????