⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 awemployees.aspx

📁 wrox出版社的另一套经典的VB2005数据库编程学习书籍,收集了书中源码,郑重推荐,电子书,电子书下载
💻 ASPX
字号:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="AWEmployees.aspx.vb" Inherits="_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>AdventureWorks Employee Roster</title>
</head>
<body bottommargin="10" topmargin="10">
    <form id="form1" runat="server">
    <div>
        <font size="1pt">
            <asp:Label ID="Label1" runat="server" Font-Bold="True" Font-Names="Arial" Font-Size="10pt"
                ForeColor="MediumBlue" Text="Click a Link to Open a Report:" Width="192px"></asp:Label>
            <asp:LinkButton ID="LinkButton1" runat="server" Font-Bold="True" Font-Names="Arial"
            Font-Size="10pt" Width="105px" PostBackUrl="~/NWEmployees.aspx">NWEmployees</asp:LinkButton>
        <asp:LinkButton ID="LinkButton2" runat="server" Font-Bold="True" Font-Names="Arial"
            Font-Size="10pt" Width="105px" PostBackUrl="~/NWOrders1997.aspx">NWOrders1997</asp:LinkButton>
        <asp:LinkButton ID="LinkButton3" runat="server" Font-Bold="True" Font-Names="Arial"
            Font-Size="10pt" Width="105px" PostBackUrl="~/NWOrdersChart.aspx">NWOrdersChart</asp:LinkButton>
        <asp:LinkButton ID="LinkButton4" runat="server" Font-Bold="True" Font-Names="Arial"
            Font-Size="10pt" Width="105px" PostBackUrl="~/AWEmployees.aspx">AWEmployees</asp:LinkButton>
        <asp:LinkButton ID="LinkButton5" runat="server" Font-Bold="True" Font-Names="Arial"
            Font-Size="10pt" Width="105px" PostBackUrl="~/AWCategories.aspx">AWCategoriesChart</asp:LinkButton>
            <br />
            <br />
        <rsweb:ReportViewer ID="ReportViewer1" runat="server" Width="100%" Font-Names="Verdana" Font-Size="8pt" Height="412px">
            <LocalReport ReportPath="AWEmployeesWin.rdlc">
                <DataSources>
                    <rsweb:ReportDataSource DataSourceId="ObjectDataSource1" Name="AdventureWorksDataset_AWEmployees" />
                </DataSources>
            </LocalReport>
        </rsweb:ReportViewer>
            <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" OldValuesParameterFormatString="original_{0}"
                SelectMethod="GetData" TypeName="AdventureWorksDataSetTableAdapters.AWEmployeesTableAdapter">
            </asp:ObjectDataSource>
        </font>        
    </div>
    </form>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -