Skip to main content

Posts

Showing posts from May, 2017

Bootstrap Delete Confirmation popup

<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title>Bootstrap Popup message</title>     <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />     <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />     <script type="text/javascript">         function getConfirmation(sender, title, message) {             $("#ModalTitle").text(title);             $("#ModalMsg").text(message);             $('#modalPopUp').modal('show');             return false;         }     </script>     <style type="text/css">         i {       ...

Date picker in asp.net !!!

Date Picker Using Bootstrap and ASP.net <html> <head> <title>Date Picker Using Bootstrap and ASP.net</title> <link href="../bootstrap-3.3.7-dist/bootstrap-datepicker/css/bootstrap-datepicker.css" rel="stylesheet" type="text/css" /> </head>      <body>                 <form ID="Form1" runat="server">                 <div class="col-md-4 col-xs-6 col-xs-offset-3 col-md-offset-0">                     <div class="form-group">                         <div class="has-feedback">      ...