> How can I determine if the page is loading or posted
> ?
> (something like IsPosBack in ASP.NET)
I don't know .Net so I don't know about the IsPosBack.
However , if you lookup HttpServletResponse here http://java.sun.com/javaee/5/docs/api/
there's a isCommitted method.
Perhas if response is committed on the the target page (the page which is in the action attribute of the form's post) then , isCommitted is set to true.
I havent tried this but it doesn't hurt if you experiment with it.