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

📄 viewaffiche.aspx

📁 精通ASP.NET2.0企业级开项目开发源代码.有会员积分系统/简单OA系统/客户关系管理系统/网上书店系统.每个里面都分sql2003和sql2005的代码,c# 三层架构非常值得学习
💻 ASPX
字号:
<%@ Page Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="ViewAffiche.aspx.cs" Inherits="ShareArea_ViewAffiche" Title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
    <table style="width: 507px">
        <tr>
            <td style="height: 26px">
                选择公告日期 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
                &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp;
                &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<asp:Calendar ID="Calendar1" runat="server" Width="319px"></asp:Calendar>
            </td>
        </tr>
        <tr>
            <td>
                <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="AfficheID"
                    DataSourceID="SqlDataSource1" Width="498px">
                    <Columns>
                        <asp:BoundField DataField="AfficheContent" HeaderText="公告内容" SortExpression="AfficheContent" />
                        <asp:BoundField DataField="AfficheTime" DataFormatString="{0:d}" HeaderText="时间"
                            HtmlEncode="False" SortExpression="AfficheTime" />
                    </Columns>
                </asp:GridView>
                <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:SimpleOAConnectionString %>"
                    SelectCommand="SELECT [AfficheID], [AfficheContent], [AfficheTime] FROM [Affiche] WHERE (datediff(day,[AfficheTime] , @AfficheTime)=0)">
                    <SelectParameters>
                        <asp:ControlParameter ControlID="Calendar1" Name="AfficheTime" PropertyName="SelectedDate"
                            Type="DateTime" />
                    </SelectParameters>
                </asp:SqlDataSource>
            </td>
        </tr>
    </table>
</asp:Content>

⌨️ 快捷键说明

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