클라이언트에서 포스트백 확인클릭 버튼 ASP.NET 시도해 본 결과: function UserDeleteConfirmation() { if (confirm("Are you sure you want to delete this user?")) return true; else return false; } 그리고. function UserDeleteConfirmation() { if (confirm("Are you sure you want to delete this user?")) { __doPostBack(btnUserDelete, ''); } return false; } 그리고 아무 것도 작동하지 않습니다.시도해 보기: 이렇게 하면 사용자가 "취소"를 누를 때만 "복귀"가 실행되고 "확인"을 누를 때는 실행..