Sometimes when I reference other dtml documents I get the dtml code returned as text, rather that outputting HTML like it should. For example, the code I have below will print out the standard header properly and then display the raw html where the Eligibility.MemberInfo document should be. What am I doing wrong? <dtml-var standard_html_header> <dtml-in SQL_ViewMember> <dtml-var "Eligibility.MemberInfo"> </dtml-in> <dtml-var standard_html_footer>
In article <71D21CF19DE2D011AD43006097BD8C019D5C7B@SJMR-MSG-01>, Baker, Dennis (sjmr) <DBaker@CHW.edu> writes
What am I doing wrong?
<dtml-var standard_html_header> <dtml-in SQL_ViewMember> <dtml-var "Eligibility.MemberInfo"> </dtml-in> <dtml-var standard_html_footer>
Do you need the double quotes? ------- Regards, Graham Chiu gchiu<at>compkarori.co.nz http://www.compkarori.com/dynamo - The Homebuilt Dynamo http://www.compkarori.com/dbase - The dBase bulletin
Try using just this: <dtml-var Eligibility.MemberInfo> Dimitris Andrakakis http://atlas.central.ntua.gr:8000/~mc94068 ----- Original Message ----- From: "Baker, Dennis (sjmr)" <DBaker@CHW.edu> To: <zope@zope.org> Sent: Wednesday, March 29, 2000 2:24 AM Subject: [Zope] Code returns text instead of HTML
Sometimes when I reference other dtml documents I get the dtml code returned as text, rather that outputting HTML like it should. For example, the code I have below will print out the standard header properly and then display the raw html where the Eligibility.MemberInfo document should be. What am I doing wrong?
<dtml-var standard_html_header> <dtml-in SQL_ViewMember> <dtml-var "Eligibility.MemberInfo"> </dtml-in> <dtml-var standard_html_footer>
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
__________________________________________________ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com
"Baker, Dennis (sjmr)" wrote:
Sometimes when I reference other dtml documents I get the dtml code returned as text, rather that outputting HTML like it should. For example, the code I have below will print out the standard header properly and then display the raw html where the Eligibility.MemberInfo document should be. What am I doing wrong?
<dtml-var standard_html_header> <dtml-in SQL_ViewMember> <dtml-var "Eligibility.MemberInfo"> </dtml-in> <dtml-var standard_html_footer>
This should work: <dtml-var standard_html_header> <dtml-in SQL_ViewMember> <dtml-with Eligibility> <dtml-var MemberInfo> </dtml-with> </dtml-in> <dtml-var standard_html_footer> -- Nick Garcia | ngarcia@codeit.com CodeIt Computing | http://codeit.com
participants (4)
-
Baker, Dennis (sjmr) -
Dimitris Andrakakis -
Graham Chiu -
Nick Garcia