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.

55 lines
2.6 KiB

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ac_balance.aspx.cs" Inherits="Swift.web.AccountReport.AccountBalance.ac_balance" %>
  2. <!DOCTYPE html>
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head runat="server">
  5. <title></title>
  6. <link href="../../ui/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
  7. <link href="../../ui/css/style.css" rel="stylesheet" />
  8. <link href="../../ui/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
  9. </head>
  10. <body>
  11. <form id="form1" runat="server">
  12. <div class="page-wrapper">
  13. <div class="row">
  14. <div class="col-sm-12">
  15. <div class="page-title">
  16. <ol class="breadcrumb">
  17. <li><a href="../../Front.aspx" target="mainFrame"><i class="fa fa-home"></i></a></li>
  18. <li class="active"><a href="#">Account Balance Vs Statement Balance</a></li>
  19. </ol>
  20. </div>
  21. </div>
  22. </div>
  23. <div class="row">
  24. <div class="col-md-12">
  25. <div class="panel panel-default ">
  26. <div class="panel-heading">
  27. <h4 class="panel-title">Account Balance Vs Statement Balance List</h4>
  28. <div class="panel-actions">
  29. <a href="#" class="panel-action panel-action-toggle"></a>
  30. </div>
  31. </div>
  32. <div class="panel-body">
  33. <table class="table table-responsive table-bordered table-striped">
  34. <thead>
  35. <tr>
  36. <th><strong>SN </strong></th>
  37. <th><strong>Acc Number </strong></th>
  38. <th><strong>Name </strong></th>
  39. <th><strong>AC Balance </strong></th>
  40. <th align="right"><strong>Statement Balance </strong></th>
  41. <th align="right"><strong>Diff </strong></th>
  42. </tr>
  43. </thead>
  44. <tbody id="tblMain" runat="server">
  45. </tbody>
  46. </table>
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51. </div>
  52. </form>
  53. </body>
  54. </html>