• 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

Not reloading part of a page

 
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello. I don't know much about JSP and I would to know something. Let's say I have a page which has got two sections: one where there are some menus, and other where there is just some text. If I click in one of the menus, this will send the user to another page which is basically the same as the one before but with the text part changed. I'd rather, then, not load again the menu part and just replace the text part with the new text. I have been unable to do this and I need help, because I don't want to be loading everything and have lots of .jsp for what can (i think) be done in just one. Thanks for your help!
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JSP has nothing that will help you. If you want to reload only part of a page, Ajax is what you probably need (assuming you don't want to resort to frames or iframes).
 
reply
    Bookmark Topic Watch Topic
  • New Topic