I am encountering an issue with a modal window (bootstrap 4) and a multipage gridview on my website. When the page initially loads, the modal window appears without any problems. However, if I navigate to the next page on the gridview, the page refreshes and the modal window reappears. How can I prevent the modal window from showing for the second time? Thank you for your assistance.
<script type="text/javascript">
$(window).on('load',function(){
$('#myModal').modal('show');
});