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

OA系统

开发平台:

ASP/ASPX

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="report.aspx.cs" Inherits="web_pos_report" %>
  2. <%@ Register Assembly="CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"
  3.     Namespace="CrystalDecisions.Web" TagPrefix="CR" %>
  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.     <link href="/aspnet_client/System_Web/2_0_50727/CrystalReportWebFormViewer3/css/default.css"
  9.         rel="stylesheet" type="text/css" />
  10.     <link href="/aspnet_client/System_Web/2_0_50727/CrystalReportWebFormViewer3/css/default.css"
  11.         rel="stylesheet" type="text/css" />
  12.     <link href="/aspnet_client/System_Web/2_0_50727/CrystalReportWebFormViewer3/css/default.css"
  13.         rel="stylesheet" type="text/css" />
  14.     <link href="/aspnet_client/System_Web/2_0_50727/CrystalReportWebFormViewer3/css/default.css"
  15.         rel="stylesheet" type="text/css" />
  16.     <link href="/aspnet_client/System_Web/2_0_50727/CrystalReportWebFormViewer3/css/default.css"
  17.         rel="stylesheet" type="text/css" />
  18.     <link href="/aspnet_client/System_Web/2_0_50727/CrystalReportWebFormViewer3/css/default.css"
  19.         rel="stylesheet" type="text/css" />
  20.     <link href="/aspnet_client/System_Web/2_0_50727/CrystalReportWebFormViewer3/css/default.css"
  21.         rel="stylesheet" type="text/css" />
  22.     <link href="/aspnet_client/System_Web/2_0_50727/CrystalReportWebFormViewer3/css/default.css"
  23.         rel="stylesheet" type="text/css" />
  24.     <link href="/aspnet_client/System_Web/2_0_50727/CrystalReportWebFormViewer3/css/default.css"
  25.         rel="stylesheet" type="text/css" />
  26. </head>
  27. <body>
  28.     <form id="form1" runat="server">
  29.     <div>
  30.         <asp:MultiView ID="MultiView1" runat="server" ActiveViewIndex="0">
  31.             <asp:View ID="View1" runat="server">
  32.                  <table style="width: 358px">
  33.             <tr>
  34.                 <td style="height: 24px; width:80px">
  35.                 <span style="width:80px">选择年月</span>
  36.                 </td>
  37.                 <td style="height: 24px; width: 100px;">
  38.                     <asp:DropDownList ID="DropDownList1" runat="server" Width="100px">
  39.                     <asp:ListItem Value='2008'>2008</asp:ListItem>
  40.                     <asp:ListItem Value='2009'>2009</asp:ListItem>
  41.                     </asp:DropDownList>
  42.                 </td>
  43.                 <td style="height: 24px; width:20px">
  44.                  年
  45.                 </td>
  46.                 <td style="height: 24px; width:100px">
  47.                     <asp:DropDownList ID="DropDownList2" runat="server" Width="100px">
  48.                     <asp:ListItem Value='01'>01</asp:ListItem>
  49.                     <asp:ListItem Value='02'>02</asp:ListItem>
  50.                     <asp:ListItem Value='03'>03</asp:ListItem>
  51.                     <asp:ListItem Value='04'>04</asp:ListItem>
  52.                     <asp:ListItem Value='05'>05</asp:ListItem>
  53.                     <asp:ListItem Value='06'>06</asp:ListItem>
  54.                     <asp:ListItem Value='07'>07</asp:ListItem>
  55.                     <asp:ListItem Value='08'>08</asp:ListItem>
  56.                     <asp:ListItem Value='09'>09</asp:ListItem>
  57.                     <asp:ListItem Value='10'>10</asp:ListItem>
  58.                     <asp:ListItem Value='11'>11</asp:ListItem>
  59.                     <asp:ListItem Value='12'>12</asp:ListItem>
  60.                     </asp:DropDownList>
  61.                 </td>
  62.                 <td style="width: 19px; height: 20px">
  63.                 月
  64.                 </td>
  65.             </tr>
  66.             <tr>
  67.                 <td colspan="5">
  68.                     <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="确定" /></td>
  69.             </tr>
  70.         </table>
  71.                 &nbsp;&nbsp;
  72.                 <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server" AutoDataBind="true"
  73.                     ReportSourceID="CrystalReportSource1" Visible="False" />
  74.                 <CR:CrystalReportSource ID="CrystalReportSource1" runat="server">
  75.                     <Report FileName="webposCrystalReport.rpt">
  76.                     </Report>
  77.                 </CR:CrystalReportSource>
  78.             </asp:View>
  79.         </asp:MultiView></div>
  80.     </form>
  81. </body>
  82. </html>