Hi,
I am making a web page in asp.net c sharp. In Html design part i have applied bootstarp modal . Now aafter the click on button the anoher page is displaying but if i am selecting in that any dropdown textbox the page is going back to home page. i have applied the content ad upatepanel.could any one please help me to reslove the issue as soon as possible.

Madan ShekarPosted Nov 6, 2018, 1:00 AM
<button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal">Open Modal</button>
<div id="myModal" class="modal fade" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Modal Header</h4>
</div>
<div class="modal-body">
<p>Some text in the modal.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>