swal asp.net mvc code example
Example 1: swal.fire in core php
<script src="//cdn.jsdelivr.net/npm/sweetalert2@10"></script>
Example 2: sweetalert
Swal.fire({ title: 'Do you want to save the changes?', showDenyButton: true, showCancelButton: true, confirmButtonText: `Save`, denyButtonText: `Don't save`,}).then((result) => { /* Read more about isConfirmed, isDenied below */ if (result.isConfirmed) { Swal.fire('Saved!', '', 'success') } else if (result.isDenied) { Swal.fire('Changes are not saved', '', 'info') }})