zoukankan      html  css  js  c++  java
  • datalist显示商品列表

    DataList横向显示数据

    <asp:datalist id="MyList" RepeatDirection=Horizontal RepeatColumns=2 showfooter=true borderwidth=0 runat=server>
                     <HeaderTemplate>
                     <table height=100% width=288 cellpadding=0 cellspacing=0 border=0 >
                     <tr>
                     </HeaderTemplate>
                     <ItemTemplate>
                             <td>
                              <table>
                              <tr>
                              <td width=130>
                               <a href="Hotel/hotelDetail.aspx?H_ID=<%# DataBinder.Eval(Container.DataItem, "H_ID")%>" target=_blank><img height="90" width="130" border=0 src="HotelManage/pic/<%# DataBinder.Eval(Container.DataItem, "H_Pic1")%>" /></a>
                              </td>
                              </tr>
                              <tr>
                              <td>
                               <%# DataBinder.Eval(Container.DataItem, "H_Name")%>
                              </td>
                              </tr>
                              </table>
                            </td>   
                  </ItemTemplate>
                  <FooterTemplate>
                    </tr>
                      </table>
                  </FooterTemplate>
               </asp:datalist>

    RepeatDirection=Horizontal 为设置为横向显示

    RepeatColumns=2 每行显示2条记录

  • 相关阅读:
    滚动条滑至底部自动加载内容
    curl请求https请求
    JS根据经纬度获取地址信息
    php结合md5的加密解密算法实例
    php gzcompress() 和gzuncompress()函数实现字符串压缩
    html视频播放器的代码 及其参数详解
    phpcms 整合 discuz!
    phpcms V9 整合 Discuz! X2 教程
    中国各省打架排行榜
    jQuery获取输入框并设置焦点
  • 原文地址:https://www.cnblogs.com/zzxap/p/2175905.html
Copyright © 2011-2022 走看看