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

📄 news.ascx

📁 WebParts的开发的一个非常好的源码例子
💻 ASCX
字号:
<%@ Control Language="C#"  CodeFile="News.ascx.cs" Inherits="News_ascx" %>

<table width="100%" cellpadding="4" bgcolor="lightyellow">
    <tr>
        <td valign="middle">
            <asp:Label ID="Headline" Text="World News" Font-Name="Verdana" Font-Size="16pt" Font-Bold="true" Font-Italic="true" Runat="server" />
        </td>
    </tr>
    <tr>
        <td height="1px" bgcolor="gray">
        </td>
    </tr>
</table>
<asp:Repeater ID="Repeater1" Runat="server">
    <HeaderTemplate>
        <table width="330px" cellpadding="4" cellspacing="0">
    </HeaderTemplate>
    <ItemTemplate>
        <tr><td bgcolor="#eeeeee">
        <asp:HyperLink Text='<%# Eval ("Headline") %>' NavigateUrl='<%# Eval ("Link") %>'
            Font-Bold="true" Runat="server" />
        <br />
        <asp:Label Text='<%# Eval ("Description") %>' Font-Size="8pt" Runat="server" />
        </td></tr>
    </ItemTemplate>
    <AlternatingItemTemplate>
        <tr><td bgcolor="#dcdcdc">
        <asp:HyperLink Text='<%# Eval ("Headline") %>' NavigateUrl='<%# Eval ("Link") %>' Runat="server"
            Font-Bold="true" Runat="server" />
        <br />
        <asp:Label ID="Label1" Text='<%# Eval ("Description") %>' Font-Size="8pt" Runat="server" />
        </td></tr>
    </AlternatingItemTemplate>
    <FooterTemplate>
        </table>
    </FooterTemplate>
</asp:Repeater>

⌨️ 快捷键说明

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