forked from jackieli123723/JavaScript.Utilities
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootboxDemo.aspx
More file actions
27 lines (24 loc) · 870 Bytes
/
bootboxDemo.aspx
File metadata and controls
27 lines (24 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="bootboxDemo.aspx.cs" Inherits="YanZhiwei.JavaScript.Utilities.bs.v3.bootboxDemo" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<link href="css/bootstrap.css" rel="stylesheet" />
<script src="../../jquery/jquery-1.9.1.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="bootbox/bootbox.min.js"></script>
<script src="bootbox/bootboxUtils.js"></script>
<script type="text/javascript">
$(document).ready(function () {
bootboxUtils.showAutoCloseDialog('测试', '内容', 5000);
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>
</html>