5
votes
1answer
484 views

Can I make a selective refresh of the contents in the JSP page?

It seems to be weird but still : Is there any way I can make only the selective portion of the jsp page get refreshed ? Suppose : <% response.setIntHeader("Refresh",1); // refresh at an interval ...
0
votes
1answer
2k views

Refreshing a single component in a JSP page

Can I refresh a HTML component in JSP? I have two dropdowns. On selection of a value in the first dropdown the values in the dropdown box are to be fetched from the database. Is this possible using ...