Copy link to clipboard
Copied
I am using JSP for Web Development and Dreamweaver CS4
In JSP, include tag which can be written in following ways,
<jsp:include page="incudeFile.jsp" /> (Supported in Dreamweaver Tag Library, hence show the content of included Jsp in calling JSP in DESIGN View)
But If I want to send some parameters to the file then I can write in following way
<jsp:include page="incudeFile.jsp" >
<jsp:param name="userId" value="101" />
</jsp:include>
(But this way of writing is not supported and hence cant see the whole page (with included JSP) in design view .)
I there any work around to it
Please discuss
Thanks
Venkat
Copy link to clipboard
Copied
Venkat,
Actually, the visual representation is Design View is controlled by Translators, not the Tag Libraries. Take a look at these files:
configuration/ServerBehaviors/JSP/include_*.edml
The define the searchPatterns in RegExp format that recognize the include files on your page.
Hope this helps,
Randy
Find more inspiration, events, and resources on the new Adobe Community
Explore Now