You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
3.6 KiB

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="BrowseDoc.aspx.cs" Inherits="Swift.web.Remit.Administration.AgentCustomerSetup.UploadVoucher.BrowseDoc" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head id="Head1" runat="server">
  5. <title></title>
  6. <link href="../../../../css/style.css" rel="stylesheet" type="text/css" />
  7. <link href="../../../../ui/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
  8. <link href="../../../../ui/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
  9. <script src="../../../../js/functions.js" type="text/javascript"></script>
  10. <script type="text/javascript">
  11. function ShowBtn(id) {
  12. document.getElementById(id).style.display = 'block';
  13. }
  14. function hideBtn(id) {
  15. document.getElementById(id).style.display = 'none';
  16. }
  17. function DeleteDocument(id) {
  18. document.getElementById("docId").value = id;
  19. document.getElementById("btnDelete").click();
  20. }
  21. </script>
  22. <style type="text/css">
  23. div.show-image {
  24. position: relative;
  25. float: left;
  26. margin: 5px;
  27. }
  28. div.show-image:hover img {
  29. opacity: 0.5;
  30. }
  31. div.show-image:hover input {
  32. display: block;
  33. }
  34. div.show-image input {
  35. position: absolute;
  36. display: none;
  37. }
  38. div.show-image input.delete {
  39. top: 140px;
  40. left: 70%;
  41. }
  42. </style>
  43. </head>
  44. <body>
  45. <div class="row">
  46. <div class="col-sm-12">
  47. <div class="page-title">
  48. <h4>BROWSE DOC
  49. </h4>
  50. <ol class="breadcrumb">
  51. <li><a href="../../../Front.aspx" target="mainFrame"><i class="fa fa-home"></i></a></li>
  52. <li class="active"><a href="#">Transaction</a></li>
  53. <li class="active"><a href="#">Upload Docs</a></li>
  54. </ol>
  55. </div>
  56. </div>
  57. </div>
  58. <form id="form1" runat="server">
  59. <asp:HiddenField ID="hdntnxType" runat="server" />
  60. <asp:HiddenField ID="hdnAgentId" runat="server" />
  61. <asp:HiddenField ID="docId" runat="server" />
  62. <asp:HiddenField ID="hdnTranId" runat="server" />
  63. <asp:HiddenField ID="txnType" runat="server" />
  64. <asp:HiddenField ID="hdnIcn" runat="server" />
  65. <%--<asp:Button ID="btnDelete" runat="server" Text="Delete" OnClick="btnDelete_Click"
  66. Style="display: none;" />--%>
  67. <div class="panel panel-default" runat="server" id="uploadPanel">
  68. <div class="panel-heading">Upload Document</div>
  69. <div class="panel-body">
  70. <input id="fileUpload" runat="server" name="fileUpload" type="file" /><br />
  71. <br />
  72. Upload As:
  73. <asp:Button ID="voucher" runat="server" Text="Voucher" Style="width: 100px !important; height: 40px !important;"
  74. OnClick="voucher_Click" />
  75. <asp:Button ID="id" runat="server" Text="Id" Style="width: 100px !important; height: 40px !important;"
  76. OnClick="id_Click" />
  77. <asp:Button ID="Both" runat="server" Text="Both" Style="width: 100px !important; height: 40px !important;"
  78. OnClick="Both_Click" />
  79. </div>
  80. </div>
  81. <div id="ingDisplay" runat="server">
  82. </div>
  83. </form>
  84. </body>
  85. </html>