pos_baobiao.aspx
资源名称:web.rar [点击查看]
上传用户:xrffrp
上传日期:2022-03-25
资源大小:22155k
文件大小:5k
源码类别:
OA系统
开发平台:
ASP/ASPX
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="pos_baobiao.aspx.cs" Inherits="web_pos_pos_baobiao" %>
- <%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
- Namespace="Microsoft.Reporting.WebForms" TagPrefix="rsweb" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" >
- <head runat="server">
- <title>无标题页</title>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <asp:MultiView ID="MultiView1" runat="server" ActiveViewIndex="0">
- <asp:View ID="View1" runat="server">
- <table>
- <tr>
- <td>
- <span>开始日期</span>
- </td>
- <td>
- <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>
- <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">
- <SelectedDayStyle BackColor="#666666" Font-Bold="True" ForeColor="White" />
- <TodayDayStyle BackColor="#CCCCCC" ForeColor="Black" />
- <OtherMonthDayStyle ForeColor="#808080" />
- <NextPrevStyle VerticalAlign="Bottom" />
- <DayHeaderStyle BackColor="#CCCCCC" Font-Bold="True" Font-Size="7pt" />
- <TitleStyle BackColor="#999999" BorderColor="Black" Font-Bold="True" />
- <SelectorStyle BackColor="#CCCCCC" />
- <WeekendDayStyle BackColor="#FFFFCC" />
- </asp:Calendar>
- </td>
- <td>
- <span>截止日期</span>
- </td>
- <td >
- <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>
- <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">
- <SelectedDayStyle BackColor="#666666" Font-Bold="True" ForeColor="White" />
- <TodayDayStyle BackColor="#CCCCCC" ForeColor="Black" />
- <OtherMonthDayStyle ForeColor="Gray" />
- <NextPrevStyle VerticalAlign="Bottom" />
- <DayHeaderStyle BackColor="#CCCCCC" Font-Bold="True" Font-Size="7pt" />
- <TitleStyle BackColor="#999999" BorderColor="Black" Font-Bold="True" />
- <SelectorStyle BackColor="#CCCCCC" />
- <WeekendDayStyle BackColor="#FFFFCC" />
- </asp:Calendar>
- </td>
- </tr>
- <tr>
- <td colspan="4" align="center">
- <asp:Button ID="Button1" runat="server" Text="确定" OnClick="Button1_Click" />
- </td>
- </tr>
- </table>
-
- <rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana" Font-Size="8pt"
- Height="655px" Width="944px">
- <LocalReport ReportPath="webposReport3.rdlc">
- <DataSources>
- <rsweb:ReportDataSource DataSourceId="ObjectDataSource1" Name="DataSet3_DataTable1" />
- </DataSources>
- </LocalReport>
- </rsweb:ReportViewer>
- <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetData"
- TypeName="DataSet3TableAdapters."></asp:ObjectDataSource>
- <br />
- </asp:View>
- </asp:MultiView></div>
- </form>
- </body>
- </html>