How to refresh datasource for the repeater control
<div class="slides_container" style="font-weight: 700">
<div>
<asp:SqlDataSource ID="datasource" runat="server"
ConnectionString="<%$ ConnectionStrings:datacns%>"
SelectCommand="spGetAllTestimonial"
SelectCommandType="StoredProcedure">
</asp:SqlDataSource>
<p>
<asp:Repeater ID="Repeater1" runat="server" DataSourceID="datasource" >
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Width = "100%" Text='<%# Eval("TestDisclaimer") %>'></asp:Label>
</ItemTemplate>
...
Go to the complete details ...