Show modal popup in ASP.NET CORE

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

For those who want a similar code:


<div class="container">
<div class="modal fade" tabindex="-1" id="loginModal"
data-keyboard="false" data-backdrop="static">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">
×
</button>
<h4
</div>
<div class="modal-body">
<form>
<div class="form-group">
<input class="form-control" type="text"
placeholder="Login Username" id="inputUserName" />
</div>
<div class="form-group">
<input class="form-control" placeholder="Login Password"
type="password" id="inputPassword" />
</div>
</form>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-primary button button4">Sign</button>
<button type="button" id="btnHideModal" class="btn btn-primary button button4">
Hide
</button>
</div>
</div>
</div>
</div>
</div>




</script>
<script

<script type="text/javascript">

$(document).ready(function () {

});

() {

});
</script>

jorgvanhunsel
Автор

Thank you for this video! I am definitely going to use this for my site

zangetsuk
Автор

Hi, how can I implement the login with identity and this modal?

woquendoG
Автор

Please increase your font size. Sometimes it is annoying. Thanks for sharing this tip

bribit
Автор

Hi,
Thanks for this video. Very helpful.

Then, i would like to show a modal for making one selection (or many) in a a list of product.
After select a product, and save selection, i would like to get the item selected in the principal view.


Thanks for your advices.

Alfred
Автор

Can you add the link for code? Watching is too slow.

zekeriyakocairi
Автор

thanks for the demo, but can u share ur code thx

ranggaadiyasa