pos_baobiao.aspx
上传用户:xrffrp
上传日期:2022-03-25
资源大小:22155k
文件大小:5k
源码类别:

OA系统

开发平台:

ASP/ASPX

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="pos_baobiao.aspx.cs" Inherits="web_pos_pos_baobiao" %>
  2. <%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  3.     Namespace="Microsoft.Reporting.WebForms" TagPrefix="rsweb" %>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  5. <html xmlns="http://www.w3.org/1999/xhtml" >
  6. <head runat="server">
  7.     <title>无标题页</title>
  8. </head>
  9. <body>
  10.     <form id="form1" runat="server">
  11.     <div>
  12.         <asp:MultiView ID="MultiView1" runat="server" ActiveViewIndex="0">
  13.             <asp:View ID="View1" runat="server">
  14.                 <table>
  15.                     <tr>
  16.                         <td>
  17.                         <span>开始日期</span>
  18.                         </td>
  19.                         <td>
  20.                      <asp:TextBox ID="b_date" runat="server"></asp:TextBox><asp:ImageButton id="ImageButton1" onclick="ImageButton1_Click" runat="server" ImageUrl="~/images/calbtn.gif" Enabled="true"></asp:ImageButton>
  21.                     <asp:Calendar id="Begindate" runat="server" Width="200px" Visible="False" OnSelectionChanged="Begindate_SelectionChanged" Height="180px" ForeColor="Black" Font-Size="8pt" Font-Names="Verdana" DayNameFormat="Shortest" CellPadding="4" BorderColor="#999999" BackColor="White">
  22.                                     <SelectedDayStyle BackColor="#666666" Font-Bold="True" ForeColor="White"  />
  23.                                     <TodayDayStyle BackColor="#CCCCCC" ForeColor="Black"  />
  24.                                     <OtherMonthDayStyle ForeColor="#808080"  />
  25.                                     <NextPrevStyle VerticalAlign="Bottom"  />
  26.                                     <DayHeaderStyle BackColor="#CCCCCC" Font-Bold="True" Font-Size="7pt"  />
  27.                                     <TitleStyle BackColor="#999999" BorderColor="Black" Font-Bold="True"  />
  28.                                     <SelectorStyle BackColor="#CCCCCC"  />
  29.                                     <WeekendDayStyle BackColor="#FFFFCC"  />
  30.                                 </asp:Calendar>
  31.                         </td>
  32.                         <td>
  33.                         <span>截止日期</span>
  34.                         </td>
  35.                          <td >
  36.                       <asp:TextBox ID="e_date" runat="server"></asp:TextBox><asp:ImageButton id="ImageButton2" onclick="ImageButton2_Click" runat="server" ImageUrl="~/images/calbtn.gif" Enabled="true"></asp:ImageButton>
  37.                     <asp:Calendar id="Enddate" runat="server" Width="200px" Visible="False" OnSelectionChanged="Enddate_SelectionChanged" Height="180px" ForeColor="Black" Font-Size="8pt" Font-Names="Verdana" DayNameFormat="Shortest" CellPadding="4" BorderColor="#999999" BackColor="White">
  38.                                     <SelectedDayStyle BackColor="#666666" Font-Bold="True" ForeColor="White"  />
  39.                                     <TodayDayStyle BackColor="#CCCCCC" ForeColor="Black"  />
  40.                                     <OtherMonthDayStyle ForeColor="Gray"  />
  41.                                     <NextPrevStyle VerticalAlign="Bottom"  />
  42.                                     <DayHeaderStyle BackColor="#CCCCCC" Font-Bold="True" Font-Size="7pt"  />
  43.                                     <TitleStyle BackColor="#999999" BorderColor="Black" Font-Bold="True"  />
  44.                                     <SelectorStyle BackColor="#CCCCCC"  />
  45.                                     <WeekendDayStyle BackColor="#FFFFCC"  />
  46.                                 </asp:Calendar>
  47.                         </td>
  48.                     </tr>
  49.                     <tr>
  50.                     <td  colspan="4" align="center">
  51.                         <asp:Button ID="Button1" runat="server" Text="确定" OnClick="Button1_Click" />
  52.                     </td>
  53.                     </tr>
  54.                 </table>
  55.                 &nbsp;
  56.                 <rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana" Font-Size="8pt"
  57.                     Height="655px" Width="944px">
  58.                     <LocalReport ReportPath="webposReport3.rdlc">
  59.                         <DataSources>
  60.                             <rsweb:ReportDataSource DataSourceId="ObjectDataSource1" Name="DataSet3_DataTable1" />
  61.                         </DataSources>
  62.                     </LocalReport>
  63.                 </rsweb:ReportViewer>
  64.                 <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetData"
  65.                     TypeName="DataSet3TableAdapters."></asp:ObjectDataSource>
  66.                 <br />
  67.             </asp:View>
  68.         </asp:MultiView></div>
  69.     </form>
  70. </body>
  71. </html>