productfeaturecontrol.ascx
来自「C#语言制作asp.net网上商店的」· ASCX 代码 · 共 27 行
ASCX
27 行
<%@ Control Language="VB" AutoEventWireup="false" CodeFile="ProductFeatureControl.ascx.vb" Inherits="Shop_Product_Controls_ProductFeatureControl" %>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td style="height: 19px">
<a id="aFeature" name="aFeature"></a>
<hr />
<asp:Label ID="lbFeature" runat="server" SkinID="blueTitle" Text="Product Feature"></asp:Label><br />
<br />
<asp:Repeater ID="rpFeature" runat="server">
<ItemTemplate>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="200">
<asp:Image ID="Image1" runat="server" ImageUrl="~/Images/Shop/dot2.gif" />
<b>
<asp:Literal ID="FeatureName" runat="server" Text='<%#Eval("FeatureName") %>'></asp:Literal></b>
</td>
<td>
<asp:Literal ID="FeatureValue" runat="server" Text='<%#Eval("FeatureValue") %>'></asp:Literal></td>
</tr>
</table>
</ItemTemplate>
</asp:Repeater>
</td>
</tr>
</table>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?