• 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

Oracle JSP Parser Exception

 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello guys
I am getting following error on Oracle 9iAS [9.0.3.0.0].
[/B]OracleJSP: oracle.jsp.parse.JspParseException: Line # 8, <jsp aram name="classToUse" value="<%=Utility.getParam(request, "classToUse")%>" />
Error: Attribute: classToUse")% is not a valid attribute name[/B]
i am including a page and setting its prameter using include action.


<jsp:include page="../Include/TableHeader.jsp" flush="true">
<jsp aram name="classToUse" value="<%=classToUse%>" />
<jsp aram name="msgToDisplay1" value="<%=msgToDisplay1%>" />
<jsp aram name="msgToDisplay1" value="<%=msgToDisplay2%>" />
<jsp aram name="title" value="Plasmid Search Screen" />
</jsp:include>


help needed quicly.
 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In your code somewhere u have written [/B], its a closing tag. you should give starting tag also. or remove that closing tag and check
 
He's dead Jim. Grab his tricorder. I'll get his wallet and this tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic