Hi,
I'm creating a page that has an ASP button that should delete a row of data from an SQL database. I want a javascript confirm window to appear to make sure the user really wants to delete the information. I can set the button's OnClientClick property to "javascript:confirm('Are you sure you want to delete this item?')", but the server-side event, Button_Command, still occurs regardless of whether yes or no is chosen in the confirm window. How can I fix this?
-James