is Refresh reserved keyword?

Hi,

Refresh is not a special keyword, but every time an command is invoked (such as when the user clicks an AsyncCommandLink), the entire form containing the command is submitted and processed. Probably at some point during that processing the existing values of the various inputs in the form are inspecting, which means that the getters of properties bound to those inputs will be called.

Justin

Thanks