Advertisement
Guest User

BDCollections-Totals.aspx

a guest
Feb 25th, 2011
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.59 KB | None | 0 0
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Totals.aspx.cs" Inherits="Totals" EnableViewState="true" Debug="true" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3.  
  4. <html xmlns="http://www.w3.org/1999/xhtml" id="TotalsHTML">
  5. <head runat="server">
  6. <link rel="Stylesheet" href="style.css" />
  7. <title>BD Collections</title>
  8. </head>
  9. <body onload="document.getElementById('TotalsFrameDiv').style.height=(document.body.clientHeight-36)+'px';" onresize="if (lefttime) clearInterval(lefttime); startticker(); document.getElementById('TotalsFrameDiv').style.height=(document.body.clientHeight-36)+'px';if (document.getElementById('ChartIMG')) { document.getElementById('ChartIMG').src=document.getElementById('ChartIMG').tags+'\u0026width='+(document.body.clientWidth-document.getElementById('LoginInfoTable').offsetWidth-20)+'\u0026height='+(document.body.clientHeight-document.getElementById('tickerdiv').offsetHeight-15);document.getElementById('ChartIMG').onload=null;}" style="background-color: #EFEFE7; height: 100%; margin-top: 0px; margin-left:0px;margin-right:0px;margin-bottom: 0px; background-image: url(assets/watermark.jpg); background-repeat: no-repeat; background-position: bottom right; ">
  10. <div id="tickerdiv" EnableViewState="false"> </div>
  11. <div id="TotalsFrameDiv">
  12. <table style="height: auto; width: 100%; "><tr style="height: auto"><td valign="top">
  13. <form id="formTotals" runat="server" method="get" enableviewstate="true">
  14. <table style="width: 100%;" cellspacing="0">
  15. <tr>
  16. <td style="padding-top: 5px;">
  17. <asp:MultiView ID="MultiView1" runat="server" ActiveViewIndex="1">
  18. <asp:View ID="View1" runat="server">
  19.  
  20. <div id="ChartFrameDiv">
  21. <asp:Image ID="ChartIMG" ImageUrl="Chart.aspx?PeriodUnit=day" runat="server" EnableViewState="false"/>
  22. </div>
  23. </asp:View>
  24. <asp:View ID="View2" runat="server">
  25. <table cellpadding="0" cellspacing="0" id="TotalsTable">
  26. <tr class="TrTotalsHeaders">
  27. <td class="TdTotalsHeadersCell">Name</td>
  28. <asp:PlaceHolder ID="PeriodsHeadersPlaceholder" runat="server" EnableViewState="false"></asp:PlaceHolder>
  29. <td class="TdTotalsHeadersCell">Final Totals</td>
  30. </tr>
  31. <asp:PlaceHolder ID="TotalsTablePlaceHolder" runat="server" EnableViewState="false"></asp:PlaceHolder>
  32. <tr class="TrGrandTotals">
  33. <td class="TdGrandTotalsDescription">Grand Totals</td>
  34. <asp:PlaceHolder ID="GrandTotalsPlaceholder" runat="server" EnableViewState="false"></asp:PlaceHolder>
  35. </tr>
  36. </table>
  37. </asp:View>
  38. </asp:MultiView>
  39. </td>
  40. <td valign="top" align="right" style="padding-right: 11px; width: auto;" id="LoginInfoTD" runat="server">
  41. <table id="LoginInfoTable">
  42. <tr>
  43. <td class="tdRight" style="vertical-align:top;width: 211px;">
  44. <asp:Button ID="CollectionsB" runat="server" text="Collections" EnableViewState="false" /><asp:Button ID="AdminB" runat="server" text="Admin" UseSubmitBehavior="false" EnableViewState="false" /><asp:Button ID="LogoutB" runat="server" text="Logout" UseSubmitBehavior="false" /><br />
  45. <br />
  46. <asp:Calendar ID="DateSelector" runat="server" BackColor="#660000" BorderStyle="Solid" BorderColor="#000000" ForeColor="#efefe7" TitleStyle-ForeColor="#660000" TitleStyle-BackColor="#efefe7" SelectorStyle-ForeColor="#660000" NextPrevStyle-ForeColor="#660000" NextPrevFormat="FullMonth" NextPrevStyle-Font-Size="7pt" NextPrevStyle-Font-Names="Tahoma, Verdana" TodayDayStyle-BorderColor="#990c0c" TodayDayStyle-BorderStyle="Dotted" TodayDayStyle-BorderWidth="1" SelectedDayStyle-BackColor="#efefe7" SelectedDayStyle-ForeColor="#000000" SelectedDayStyle-Font-Bold="true" CellPadding="2" DayNameFormat="Shortest" Width="211" SelectionMode="Day" TitleFormat="MonthYear" OtherMonthDayStyle-ForeColor="#773838"></asp:Calendar>
  47. <asp:Button runat="server" Text="Monthly" ID="MonthlyReportB" EnableViewState="false" /><asp:Button runat="server" Text="Graph" ID="GraphB" EnableViewState="false"/><br />
  48. <asp:CheckBox Text="Final Totals" runat="server" TextAlign="Left" ID="chkFinalTotalsOnGraph" EnableViewState="false"/>
  49. <asp:Label ID="lblName" Runat="server" EnableViewState="false"/>
  50. </td>
  51. </tr>
  52. </table>
  53. </td>
  54. </tr>
  55. </table>
  56. </form>
  57. </td>
  58. </tr>
  59. </table>
  60. </div>
  61. </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement