有关repeater控件显示的问题
我这是用repeater控件实现的我现在要实现的效果是把这列值按六个一组实现并横排主要是想数据库中的图片按一行六张的形式显示的页面上要求详细代码答案满意者,追加200分...
我这是用repeater控件实现的 我现在要实现的效果是把这列值按六个一组实现并横排 主要是想数据库中的图片按一行六张的形式显示的页面上
要求详细代码 答案满意者,追加200分 展开
要求详细代码 答案满意者,追加200分 展开
展开全部
这个效果最好用datalist实现关键是用这属性RepeatColumns="6"
<asp:DataList ID="DataList1" runat="server" BorderStyle="None" BorderWidth="0px"
CellPadding="3" DisplayPageing="Always" EnableViewState="false" GridLines="Vertical"
RepeatColumns="6" RepeatDirection="Horizontal" ItemStyle-Width="25%" ItemStyle-HorizontalAlign="Left" ShowFooter="False" ShowHeader="False"
Width="100%" onitemdatabound="DataList1_ItemDataBound">
<ItemTemplate>
<table width="150" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="100" align="left" valign="bottom"><div align="left">
<table width="132" border="0" cellpadding="8" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<td bgcolor="#FFFFFF" width="150" height="95"><div align="center">
<asp:Image ID="Image1" runat="server" Width="132" Height="90"/></div></td>
</tr>
</table>
</div></td>
</tr>
<tr>
<td align="left" style="padding-top:5px">
<asp:CheckBox ID="CheckBox1" runat="server"/> <asp:HyperLink ID="HyperLink1"
runat="server">HyperLink</asp:HyperLink></td>
</tr>
<td align="left" valign="top"><span class="order">排序</span>
<asp:TextBox ID="ord" runat="server" Width="20"></asp:TextBox> <img src="../images/046.gif" onClick="location.href='update.asp?id=16'" style="cursor:hand"> <asp:HyperLink
ID="HyperLink2" runat="server" CssClass="STYLE2">修改</asp:HyperLink></td>
</tr>
</table>
</ItemTemplate>
</asp:DataList>
<asp:DataList ID="DataList1" runat="server" BorderStyle="None" BorderWidth="0px"
CellPadding="3" DisplayPageing="Always" EnableViewState="false" GridLines="Vertical"
RepeatColumns="6" RepeatDirection="Horizontal" ItemStyle-Width="25%" ItemStyle-HorizontalAlign="Left" ShowFooter="False" ShowHeader="False"
Width="100%" onitemdatabound="DataList1_ItemDataBound">
<ItemTemplate>
<table width="150" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="100" align="left" valign="bottom"><div align="left">
<table width="132" border="0" cellpadding="8" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<td bgcolor="#FFFFFF" width="150" height="95"><div align="center">
<asp:Image ID="Image1" runat="server" Width="132" Height="90"/></div></td>
</tr>
</table>
</div></td>
</tr>
<tr>
<td align="left" style="padding-top:5px">
<asp:CheckBox ID="CheckBox1" runat="server"/> <asp:HyperLink ID="HyperLink1"
runat="server">HyperLink</asp:HyperLink></td>
</tr>
<td align="left" valign="top"><span class="order">排序</span>
<asp:TextBox ID="ord" runat="server" Width="20"></asp:TextBox> <img src="../images/046.gif" onClick="location.href='update.asp?id=16'" style="cursor:hand"> <asp:HyperLink
ID="HyperLink2" runat="server" CssClass="STYLE2">修改</asp:HyperLink></td>
</tr>
</table>
</ItemTemplate>
</asp:DataList>
展开全部
<table>
<tr >
<td style="width:700px;">
<asp:Repeater ID="Repeater1" runat="server" DataSourceID="SqlDataSource1">
<ItemTemplate>
<asp:Image ID="Image1" runat="server" Width="100" Height="100" ImageUrl='<%#Eval("Case_ImageUrl") %>' />
</ItemTemplate>
</asp:Repeater>
</td>
</tr>
</table>
你可以根据你的图片大小去灵活改变td的width就行了
<tr >
<td style="width:700px;">
<asp:Repeater ID="Repeater1" runat="server" DataSourceID="SqlDataSource1">
<ItemTemplate>
<asp:Image ID="Image1" runat="server" Width="100" Height="100" ImageUrl='<%#Eval("Case_ImageUrl") %>' />
</ItemTemplate>
</asp:Repeater>
</td>
</tr>
</table>
你可以根据你的图片大小去灵活改变td的width就行了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询