How do I add more than one "onclick" to a table.
onclick="frmAdmin.a.value='update'; frmAdmin.submit(); return false;"
href="TableName_list.htm#">TableName</A>
The above "onclick" copies to one table and I need another "Onclick" to copy to another table if the user chooses to.
with "Function BeforeDelete":
strCreate = "insert into database.[_SavedTable] (Field1, Field2) select Field1, Field2) from database.[_Table2] where " & where
dbConnection.Execute strCreate
BeforeDelete = False
Now I need another "onclick" and function to do the same to another table on the same list page.