DeliveredImportUpload.aspx 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="DeliveredImportUpload.aspx.cs" Inherits="EDelivery_DeliveredImportUpload" %>
  2. <!DOCTYPE html>
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head runat="server">
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  6. <title></title>
  7. <script src="../js/boot.js"></script>
  8. <script type="text/javascript">
  9. function closeFn(flag) {
  10. if (window.CloseOwnerWindow) {
  11. if (flag != undefined) window.CloseOwnerWindow("save");
  12. else window.CloseOwnerWindow("close");
  13. }
  14. else {
  15. window.close();
  16. }
  17. }
  18. </script>
  19. <style type="text/css">
  20. .import_div{border:solid 1px #dedede; width:500px;margin-left:auto;margin-right:auto;margin-top:20px;}
  21. .import_tip{text-align:left;color:red;line-height:18px;padding:5px;}
  22. .import_btn{text-align:center;height:30px;line-height:30px;}
  23. .import_result{text-align: center;height:30px;line-height: 30px;}
  24. </style>
  25. </head>
  26. <body>
  27. <form id="form1" runat="server">
  28. <div class="import_div">
  29. <div class="import_tip">
  30. <p>*要批量导入发货单,请先下载模板<a target="_blank" href="../importTemplateFiles/发货批量导入模板.xls">发货批量导入模板.xls</a></p>
  31. <p>*下载后,请按格式填写,填写完毕点击上传导入,即可.</p>
  32. </div>
  33. <div class="import_btn">
  34. 上传文件:<asp:FileUpload ID="xlsFile" runat="server" /><asp:Button runat="server" ID="btnSure" OnClick="btnSure_Click" Text="确认导入"/>
  35. </div>
  36. </div>
  37. </form>
  38. <div class="import_result">
  39. <asp:Literal runat="server" ID="litResult"></asp:Literal>
  40. </div>
  41. </body>
  42. </html>