📄 new.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 + -