• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Can't struts Tag be used together?

 
Ranch Hand
Posts: 152
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi everyone:
I write a javamail system using struts and I come across a problem.If I receive a mail from (For example lyo@lyo.com,what I want to do is that when I click the "reply this mail" button the page will go to replymail.jsp.I expect that the subject field and content field are already be filled with previous data.For example,If I receive a mail from li@li.com,when I click "reply this mail" button the "mail to" field will have been filled with "li@li.com" automaticly.And the "content" field will been filled with the content that I get from li@li.com auto too.
In replymail.jsp,I use the struts tag:
/////////////////////////////////////////////////////////////////////////////////////////////
"<html:text property="mailto" value="<bean:write name="mailcontent" property="mailfrom"/>"/>"
But when I run it,Tomcat report error:"org.apache.jasper.JasperException: /jsp/replymail.jsp(13,65) equal symbol expected"
Why? Can't struts Tag be used together?If it can't how should I do?
 
Sheriff
Posts: 17644
300
Mac Android IntelliJ IDE Eclipse IDE Spring Debian Java Ubuntu Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
See Oliver Refle's response here
 
reply
    Bookmark Topic Watch Topic
  • New Topic