Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
JSP tags inbetween content
suresh_anand
I am using visualformat to edit contents.In my contents i hv JSP tags embedded.
Example content: My policiy files contains <hew:"tttt"/> some info
like
MY visual editor is not able to take this tag as it is .It put < instead of <.I actually wanted to have it same way as it looks.
How to do this?Any work arounds to enter JSP tages as it is in the template(using visualformat)
Thanks in advance
Suresj
Find more posts tagged with
Comments
brianaragno
The visual format tool is actually a WYSIWYG html editor embeded into an HTML form. When you enter your jsp code into the editor, it's going to enter char codes for any special symbols you enter. For example, is I enter the following into the editor : <jsp:usebean id="myBean" scope="page"></jsp:usebean> --- this is the generated code : <jsp:usebean id="myBean" scope="page"></jsp:usebean> ---- A quick and dirty workaround is to right click on the editor and select "View as HTML" Then enter your JSP code. Be sure to check the code afterward because I've seen the editor choke on it a few times when changing back and forth between views.