new.ascx

来自「本系统是网上书店系统。本系统是应用ASP.NET 和SQL Sever2000数」· ASCX 代码 · 共 31 行

ASCX
31
字号
<%@ 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 + =
减小字号Ctrl + -
显示快捷键?