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

📄 new.ascx

📁 本系统是网上书店系统。本系统是应用ASP.NET 和SQL Sever2000数据库组成
💻 ASCX
字号:
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="new.ascx.cs" Inherits="inc_new" %>
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
    <tr>
        <td style="height: 128px">
            <asp:DataList ID="dl_newbook" runat="server" BorderColor="#FF9966" BorderStyle="None"
                GridLines="Both" RepeatColumns="1"
                RepeatDirection="Horizontal" ShowFooter="False" ShowHeader="False" Width="100%">
                <ItemStyle HorizontalAlign="Center" Width="25%" />
                <ItemTemplate>
                    <table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
                        <tr>
                            <td align="right" width="10%">
                            </td>
                            <td align="left" width="50%">
                            <A href='BookDetails.aspx?BookID=<%# DataBinder.Eval(Container.DataItem, "BookID") %>'
                        target="_blank">
                        <%# DataBinder.Eval(Container.DataItem,"BookName") %>
                    </a>
                            </td>
                
                            <td width="20%">
                                                    <%# DataBinder.Eval(Container.DataItem,"BookPrice") %>
                            </td>
                        </tr>
                    </table>
                </ItemTemplate>
            </asp:DataList>
        </td>
    </tr>
</table>

⌨️ 快捷键说明

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