Default.aspx
资源名称:web.rar [点击查看]
上传用户:xrffrp
上传日期:2022-03-25
资源大小:22155k
文件大小:2k
源码类别:
OA系统
开发平台:
ASP/ASPX
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="web_123_Default" %>
- <%@ 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:TextBox ID="TextBox1" runat="server"></asp:TextBox>
- <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" />
- <rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana" Font-Size="8pt"
- Height="400px" Width="650px" BackColor="PowderBlue" BorderColor="LightCyan" BorderStyle="Groove" DocumentMapCollapsed="True" DocumentMapWidth="100%" ExportContentDisposition="AlwaysInline" PromptAreaCollapsed="True" ToolBarItemBorderColor="Red" ToolBarItemHoverBackColor="Green" ToolBarItemPressedBorderColor="0, 64, 0" ToolBarItemPressedBorderWidth="10px" ToolBarItemPressedHoverBackColor="Fuchsia" ZoomMode="PageWidth">
- <LocalReport ReportPath="web123Report1.rdlc">
- <DataSources>
- <rsweb:ReportDataSource DataSourceId="ObjectDataSource1" Name="Customer" />
- </DataSources>
- </LocalReport>
- </rsweb:ReportViewer>
- <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetCustomersForCountry"
- TypeName="Customer">
- <SelectParameters>
- <asp:ControlParameter ControlID="TextBox1" DefaultValue="2009-02-10" Name="data"
- PropertyName="Text" Type="String" />
- </SelectParameters>
- </asp:ObjectDataSource>
-
- </div>
- </form>
- </body>
- </html>