Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Onclick & Update query

Status
Not open for further replies.

villan

Programmer
Jul 5, 2001
6
GB
How do you have an image with an "onclick" event that runs an update query without reloading the page??

Can updates only be done server-side?
Do "onclick" events only occur client side?
 
Hi villan,

Indeed, the DB only exists on the server, so to update it, you have to pass through it. So, when executing an update query, it has to run on the server.

So, you can't keep those operations client-side.

Gtz,

Kristof
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top