Hi, I have a small problem. In the code below I can display the information but I would like to create a link on of the one variables. A link is established but each link hold the last variable value in it. Is there a simple way to do this?? Thanks in advance. <dtml-in lookup_nonc_for_part_number> <dtml-unless close_out_date> <tr> <td> <font color="#0000FF" size="-1"><dtml-var date_originated> </td> <td> <dtml-call "REQUEST.SESSION.set('nc_report_no', nc_report_no)"> <font color="#0000FF" size="-1"><a href="/nonconformity_report/nonc_view/view_nonc_form2" target="_blank"> <dtml-var nc_report_no></a> </td> <td> <font color="#0000FF" size="-1"><dtml-var originator> </td> <td> <font color="#FF0000" size="-1"><dtml-var supplier_customer> </td> <td> <font color="#0000FF" size="-1"><dtml-var source_of_nonconformity> </td> </tr> </dtml-unless> </dtml-in> Larry McDonnell Proton Energy Systems 10 Technology Drive Wallingford, CT 06492 (203) 678-2181 Email:lmcdonnell@protonenergy.com www.protonenergy.com
McDonnell, Larry wrote at 2002-12-23 16:02 -0500:
I have a small problem. In the code below I can display the information but I would like to create a link on of the one variables. A link is established but each link hold the last variable value in it. Is there a simple way to do this?? Thanks in advance. Please read the documention about "dtml-in" (e.g. in the Zope book or
<http://www.dieter.handshake.de/pyprojects/zope/book/chap3.html> Watch out for "sequence-item". Dieter
participants (2)
-
Dieter Maurer -
McDonnell, Larry