01-14-06 03:51 AM
I'd guess your includes are including other JSPs or HTML fragments and
you aren't using the latest 1.2 syntax. How is your JSP including your
other code?
You can't nest multiple
<%@ include file="<some filename here>" %>
Convert to JSP 1.2 syntax
<jsp:include page="<some page here>" flush="true" />
for best portability. My best guess without seeing your code...
R
> Hi,
>
> I created a new view, registered it and set the access policies. Its a new
page for the StoreInfoArea on a ConsumerDirect store.
>
> When I try to run this view (and the JSP) with includes to the store heade
rs etc. then the page dies (nothing useful in the error message). Take out t
he includes and everything works fine.
>
> I tried copying and pasting the code from PrivacyDisplay.jsp (so that my n
ew file is a clone of that one) and the same thing happens. This new view ca
n't seem to run the include files.
>
> Does anyone know what is going wrong?
[ Post a follow-up to this message ]
|