• 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
  • paul wheaton
  • Liutauras Vilda
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Devaka Cooray
  • Paul Clapham
Saloon Keepers:
  • Scott Selikoff
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
  • Frits Walraven
Bartenders:
  • Stephan van Hulst
  • Carey Brown

Refresh a jsp page

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,
I am doing some jsp pages. I am unable to refresh the pages dynamically. Could anybody tell me how to refresh jsp pages dynamically say by pressing a button in x.jsp i want to refresh y.jsp page. could anybody tell me how to do that Please.
I am getting lot of trouble with these things.
Thank you
shanthi
 
Sheriff
Posts: 7001
6
Eclipse IDE Python C++ Debian Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think you are probably a little confused about how JSP works.
JSP is a technique for writing programs that produce web pages. When your browser requests something.jsp from the server, the server runs the JSP code to produce an HTML page, and sends that page to the browser. Neither the server nor the JSP code has any idea about what browser windows you currently have open, and what URLs they have been filled from.
If you want to have abutton in a page which refreshes another window, the correct tool to use is JavaScript, which will be run by the browser after the page has been sent from the server to the browser.
 
No one can make you feel inferior without your consent - Eleanor Roosevelt. tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic