C# ASP.net C repeater加载图像并垂直显示,然后再将其显示在Jquery转盘上

C# ASP.net C repeater加载图像并垂直显示,然后再将其显示在Jquery转盘上,c#,asp.net,webforms,C#,Asp.net,Webforms,我的转发器将加载垂直覆盖网页的图像,然后使用我的jQuery旋转木马插件显示。最终结果就是我想要的 所以我的问题是,是否有一种方法可以让中继器不显示图像。因此,页面将加载并显示jQuery,其中包含图像 我的图像是从数据库中检索的,我将它们存储为字节 有人能指导我如何隐藏显示图像的转发器吗?这使得网站非常不专业 真诚地, 谢谢 这就是代码的样子,以获取更多信息。我真的需要一些帮助 <div id="outer" style="width:100%; margin-top:10px;

我的转发器将加载垂直覆盖网页的图像,然后使用我的jQuery旋转木马插件显示。最终结果就是我想要的

所以我的问题是,是否有一种方法可以让中继器不显示图像。因此,页面将加载并显示jQuery,其中包含图像

我的图像是从数据库中检索的,我将它们存储为字节

有人能指导我如何隐藏显示图像的转发器吗?这使得网站非常不专业

真诚地, 谢谢

这就是代码的样子,以获取更多信息。我真的需要一些帮助

    <div id="outer" style="width:100%; margin-top:10px;">
        <div style="width:800px; height:700px; margin:0px auto 0px auto;">                
            <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="GetImages" TypeName="realsolutions.propertyImageDB">
                <SelectParameters>
                    <asp:Parameter Name="propertyID" Type="Int32" />
                </SelectParameters>
            </asp:ObjectDataSource>                                     
        <p id="propertyNameP" style="display:inline-block; margin-left:auto">
        <asp:Label ID="lblPropertyLabel" runat="server" Text="PropertyName" Font-Names="Times New Roman" Font-Size="X-Large" Font-Bold="true"></asp:Label>
        </p>
    <script>
                Galleria.loadTheme('js/galleria/themes/classic/galleria.classic.min.js');
                Galleria.run('.galleria', {
                    showInfo: true,
                    _toggleInfo: false,
                });
    </script>
    <div class="galleria"   >
      <asp:Repeater ID="Repeater2" runat="server" DataSourceID="ObjectDataSource1" >
            <ItemTemplate>
                    <asp:Image ID="Image1" ImageUrl='<%#GetImage(Eval("imageByte")) %>' runat="server" Width="500" Height="300" data-description='<%#Eval("description" )%>'/>             
            </ItemTemplate>
            </asp:Repeater>
    </div>