Introduction
This article explains how to create a Twitter Bootstrap Modal Popup Dialog and Play a YouTube Video using an HTML5 iframe.
Now type:
PM -> Install-Package bootstrap -Version 2.3.2
If installed successfully then it will look like this:
Now, in the code-behind file index.html use the following code.
index.html
- <!DOCTYPE html>
- <html xmlns="https://www.w3.org/1999/xhtml">
- <head>
- <title>Twitter Bootstrap Creating Modals</title>
- <link href="Content/bootstrap.css" rel="stylesheet" />
- <script src="Scripts/jquery-1.9.1.js"></script>
- <script src="Scripts/bootstrap.js"></script>
- <script src="Scripts/modal.js"></script>
- </head>
- <body>
- <div class="well">
- <div class="container">
- <p class="text-info">
- Twitter Bootstrap Modal Popup Dialog</p>
- <div id="pop" class="modal hide fade in" style="display: none;">
- <div class="modal-header">
- <a class="close" data-dismiss="modal">×</a><br />
- <p class="text-success">
- C# Corner Annual Conference 2014 Official Trailer</p>
- </div>
- <div class="modal-body">
- <p>
- <iframe width="100%" height="315" src="https://www.youtube.com/embed/KZ8q2jtrbcw" frameborder="0" allowfullscreen></iframe>
- </p>
- </div>
- <div class="modal-footer">
- <a href="#" class="btn btn-small" data-dismiss="modal">Close</a>
- </div>
- </div>
- <p>
- <a data-toggle="modal" href="#pop" class="btn btn-primary btn-small">Official Trailer</a></p>
- </div>
- </div>
- </body>
- </html>
Now run the page, it will look like the following. Click the Official Trailer button.

Abhishek ChauhanPosted Jan 2, 2017, 3:32 PM
Sir, i got one problem that when i click on the button, modal will not pop-up...!!!
Joe WilsonPosted Dec 31, 2016, 1:33 PM
Well, Thank you very much.
Manav PandyaPosted Dec 28, 2016, 8:12 AM
I need something like that with mvc
Manav PandyaPosted Dec 28, 2016, 8:12 AM
Yehh good stuff @sanjay kumar sir ji
Ankit ShuklaPosted Aug 7, 2015, 7:45 AM
how can i fix it
Ankit ShuklaPosted Aug 7, 2015, 7:45 AM
when i click on my demon button modal dialog appear for few seconds and hide automatically .
Ashu DhaundiyalPosted Dec 29, 2014, 1:27 AM
Nice article brother......!!
Chetan ChannePosted Dec 2, 2014, 5:09 AM
Awesome really help full to me