如何使用Repeater控件进行图像滑块控制?

时间:2013-11-05 09:50:40

标签: asp.net

我想从数据库中获取一些图像并通过图像滑块显示图像。 为此我想使用转发器控制。 请问您能说一下在图像滑块上使用转发器的简便方法。

1 个答案:

答案 0 :(得分:0)

这是tom实现滑块转发器的方法:

    <!--Your repeater with the <img /> tags for your slider (can be <li><img /></li> or other pattern)-->
    <asp:Repeater ID="RptImages" runat="server" DataSourceID="SqlDataSourceMention">
        <ItemTemplate>
            <img src='<%# Eval("ImgPath") %>' alt="image-slider" />
        </ItemTemplate>
    </asp:Repeater>

    <!--Your data source using stored procedure for this sample-->
    <!--The "ConnectionString" attribute is set in your web.config file-->
    <asp:SqlDataSource ID="SqlDataSourceImages" runat="server" ConnectionString="<%$ ConnectionStrings:YourconnectionString %>"
        SelectCommand="YourStoredProcedureName" SelectCommandType="StoredProcedure"></asp:SqlDataSource>

这将输出一个标签列表,其中src属性绑定在存储过程结果的“ImgPath”列中。