forked from siteserver/SS.Form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodalFormImport.aspx
45 lines (37 loc) · 1.76 KB
/
modalFormImport.aspx
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<%@ Page Language="C#" Inherits="SS.Form.Pages.ModalFormImport" %>
<!DOCTYPE html>
<html style="background:#fff">
<head>
<meta charset="utf-8">
<link href="assets/plugin-utils/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="assets/plugin-utils/css/plugin-utils.css" rel="stylesheet" type="text/css" />
<link href="assets/plugin-utils/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
<link href="assets/plugin-utils/css/ionicons.min.css" rel="stylesheet" type="text/css" />
</head>
<body style="padding: 0;background:#fff">
<div style="padding: 20px 0;">
<div class="container">
<form id="form" runat="server" class="form-horizontal">
<asp:Literal id="LtlMessage" runat="server"></asp:Literal>
<div class="form-group">
<label class="col-md-3 control-label">文件</label>
<div class="col-md-6">
<input type="file" id="HifImport" class="form-control" runat="server" />
</div>
<div class="col-md-3">
<span class="help-block"></span>
</div>
</div>
<div class="modal-footer">
<asp:Button class="btn btn-primary" onclick="Submit_OnClick" runat="server" Text="导 入"></asp:Button>
<button type="button" class="btn btn-default m-l-10" onclick="window.parent.layer.closeAll()">取 消</button>
</div>
</form>
</div>
</div>
</body>
</html>
<script src="assets/plugin-utils/js/jquery.min.js"></script>
<script src="assets/plugin-utils/js/bootstrap.min.js"></script>
<script src="assets/layer/layer.min.js" type="text/javascript"></script>
<script src="assets/sweetalert/sweetalert.min.js" type="text/javascript"></script>