Quote:
Originally Posted by mani.gparas
I want to process verious request from various jsp pages in a single jservlet(controller),how can i do it??
how can i do it using request.setAttribute() in various jsp pages
|
From request you can only getAttributes. You can setAttribute to response. Isn't it ?
And if you want to check from which page this request originated, just include a hidden field in every page and set it's value with something unique to that page (page name?).
And in servlet, check the value of that hidden field.