Click here to Skip to main content
15,891,431 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am deleting some file using dropdownlist and i want to refresh only dropdownlist without refreshing whole page , so that the files showing in dropdownlist get updated and i get confirmed that file is deleted without refreshing whole page.
Any Idea , How To..?
Posted
Updated 16-Feb-13 0:45am
v3

1 solution

Place your content inside Ajax UpdatePanel. And use Ajax timer to refresh the same content for regular interval of time.

Ex:
XML
<asp:ScriptManager runat="server" ID="ScriptManager1" />
<asp:Timer ID="Timer1" runat="server" Interval="1000" OnTick="Timer1_Tick">
</asp:Timer>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
      <Triggers>
            <asp:AsyncPostBackTrigger ControlID="Timer1" EventName="Tick" />
      </Triggers>
      <ContentTemplate>
            <asp:Label ID="Label1" runat="server"></asp:Label>
</asp:UpdatePanel>

c# code below..
C#
protected void Timer1_Tick(object sender, EventArgs e)
{
     Label1.Text = DateTime.Now.ToShortTimeString().ToString();
}

Above code will fetch current time for regular interval of 1 second. You place your code inside update panel and give time as much you wanted to refresh the content..
 
Share this answer
 
v4

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900