| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="ImportBill.aspx.cs" Inherits="EFinance_ImportBill" %>
- <!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>
- <script src="../js/boot.js"></script>
- <script type="text/javascript">
- function closeFn(flag) {
- if (window.CloseOwnerWindow) {
- if (flag != undefined) window.CloseOwnerWindow("save");
- else window.CloseOwnerWindow("close");
- }
- else {
- window.close();
- }
- }
- </script>
- <style type="text/css">
- .import_div{border:solid 1px #dedede; width:500px;margin-left:auto;margin-right:auto;margin-top:20px;}
- .import_tip{text-align:left;color:red;line-height:18px;padding:5px;}
- .import_btn{text-align:center;height:30px;line-height:30px;}
- .import_result{text-align: center;height:30px;line-height: 30px;}
- </style>
- </head>
- <body>
- <form id="form1" runat="server">
- <div class="import_div">
- <div class="import_tip">
- <p>*要批量导入账单,请先下载模板<a target="_blank" href="../importTemplateFiles/账单批量导入模板.xls">账单批量导入模板.xls</a></p>
- <p>*下载后,请按格式填写,填写完毕点击上传导入,即可.</p>
- </div>
- <div class="import_btn">
- 上传文件:<asp:FileUpload ID="xlsFile" runat="server" /><asp:Button runat="server" ID="btnSure" OnClick="btnSure_Click" Text="确认导入"/>
- </div>
- <div class="import_result">
- <asp:Literal runat="server" ID="litResult"></asp:Literal>
- </div>
- </div>
- </form>
- </body>
- </html>
|