• 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

jsp error on linux only

 
Ranch Hand
Posts: 125
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi I am getting this error in jsp(under project) installed on linux
Error Message: /common/menu.jsp(64,20) JSPG0069E: Unmatched end tag found while parsing jsp. Expecting html:form found html:select at [64,20]

but issue is that same file is giving no error on windows

regards
 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, it is because of browser, not because operating systems. Some browsers require you to close all opened tags. So, in your JSP you have a not closed html:select tag. Firefox recognizes your pages even if you do not close all your tags, but MIE shows also an error when you have some not closed tag. I hope this helps a bit.
 
author & internet detective
Posts: 41860
908
Eclipse IDE VI Editor Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Arjun,
With Struts, you have to close your tags regardless of browser. As Rayssa noted, make sure you close the select and form tags.
 
reply
    Bookmark Topic Watch Topic
  • New Topic