Jump to content

jsp:include file error

xiaofanku's Photo
Posted Nov 05 2009 02:39 AM
3189 Views

visite url:http://127.0.0.1:8080/mul/manager/layout1.jsp
//visite is normal

layout1.jsp code:
<div id="Layer0" > <embed src='http://127.0.0.1:8080/multimedia/store/image/flv.swf?FlashVars=http://127.0.0.1:8080/multimedia/store/image/vcastr.xml&IsAutoPlay=1&IsContinue=1' width='100%' height='100%' autostart='true'  loop='true' type='application/x-shockwave-flash' > <param name="SCALE" value="exactfit"  /> </embed> </div>
<div id="Layer1" >


i use MyJsp.jsp include layerout1.jsp, //visite is bad
flash file not view:(

i use this include code:
<jsp:include page="/manager/layout1.jsp"> </jsp:include> 

I'Love O'REILLY Book And something

Tags:
0 Subscribe


3 Replies

+ 2
  odewahn1's Photo
Posted Nov 05 2009 01:37 PM

From a quick look at what's provided, it looks like you need to add "mul" at the front of the included path, like this:

<jsp:include page="/mul/manager/layout1.jsp"> </jsp:include> 


hope this helps.
 : Nov 05 2009 09:05 PM
very thank dear friend
I'Love O'REILLY Book And something
 : Jan 04 2010 08:32 AM
The first answer is confirmed correct.