温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:某酒店用品市场全站源码
当前文件:
HotelSuppliesMarket/control/shopinformation.ascx[847B,2009-6-12 11:44:29],打开代码结构图
HotelSuppliesMarket/control/shopinformation.ascx[847B,2009-6-12 11:44:29],打开代码结构图1<%@ Control Language="C#" AutoEventWireup="true" CodeFile="shopinformation.ascx.cs" Inherits="control_shopinformation" %> 2
<table width="90%" border="0" cellspacing="2" cellpadding="0"> 3
<asp:Repeater ID="shop" runat="server"> 4
<ItemTemplate> 5
<tr align="left"> 6
<td width="13%"><img src="images/icon02.gif" width="9" height="9" /></td> 7
<td style="width: 141px"><a href="shopview.aspx?id=<%#Eval("u_id") %>" target="_blank"><%#Eval("u_name").ToString().Trim().Length > 10 ? Eval("u_name").ToString().Trim().Substring(0, 10) : Eval("u_name").ToString().Trim()%></a></td> 8
</tr> 9
</ItemTemplate> 10
</asp:Repeater> 11
12
</table> 13




