How to avoid Page Refreshes ?
Hi !
i'm new to jsp and i'm trying to avoid total page refreshes each time some data is posted.
inasp.net there is something calledscript callback. i'm looking for something either likedhtml DOM Objects or javaApplet but inJSP.
thanks in advanced !!!
I don't think you can easily.
ASP.net can do that sort of thing because it is hotwired into the IE browser and windows environment.
The dhtml DOM objects are still available for client side manipulations, but you can't make any server calls without refreshing a page somewhere.
One workaround is to do your submits to an "invisible" frame and when that frame loads back copy the values with javascript. Its far from the optimal solution though.
Cheers,
evnafets