Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How to Edit Dreamweaver tag library

New Here ,
Feb 05, 2011 Feb 05, 2011

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

TOPICS
Server side applications
571
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Feb 18, 2011 Feb 18, 2011
LATEST

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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines