Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need a dialog box inbetween a servlet

Status
Not open for further replies.

rach18

Programmer
Feb 6, 2009
9
0
0
US
In between a servelt, for a specific condition, i need user confirmation dialog box. According to the user input, yes/no, the servlet should continue processing further or exit logging some message.
What concept can be used here?
Any help would be appreciated.
 
assume your servlet is called servletA
1)servletA->jsp with confirmation box and action is servletA->servletA
 
The servlet is executed at server-side. The confirmation box needs to be shown at client-side.

I'd consider some more options:

1.- Redefine the design so the input of the action to be done is shown to the user in the first window.
2.- Do some AJAX work to avoid the servlet-jsp-servlet way

Cheers,
Dian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top