What happens when a client submits a form which changes the value of an Application variable?
A. Client actions cannot change Application variables. B. The change is not visible to any client until the application is stopped and started. C. The change is only visible to future requests made by that client during their current session. D. The change is visible to all clients, but only after they complete their current sessions and begin a new session. E. The change is visible to all clients immediately after the form is processed by the server.
The change is visible to all clients immediately after the form is processed by the server.
Server code can be written to update the Application variable at anytime the developer wishes. and will remain available in memory till webserver is restarted
Above answer was rated as good by the following members: satyanis1
RE: What happens when a client submits a form which ch...
Answer is definitely E.
The change is visible to all clients immediately after the form is processed by the server.
Server code can be written to update the Application variable at anytime the developer wishes. and will remain available in memory till webserver is restarted