How to Edit Dreamweaver tag library
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
