• 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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

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
reply
    Bookmark Topic Watch Topic
  • New Topic