<!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 { ...
This Blog is for study and coding reference purpose.