Skip to main content
Participating Frequently
February 5, 2011
Question

How to Edit Dreamweaver tag library

  • February 5, 2011
  • 1 reply
  • 572 views

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

This topic has been closed for replies.

1 reply

Randy Edmunds
Adobe Employee
Adobe Employee
February 19, 2011

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