How to reload the page control several times on one button click event in C# asp.net -
here given code want do.
<asp:button id="button1" runat="server" onclick="button1_click" text="button" /> <asp:label id="label1" runat="server" text="label"></asp:label> </contenttemplate> </asp:updatepanel> </td>
and .cs file having code this
protected void button1_click(object sender, eventargs e) { (int = 0; < 10; i++) { label1.text = "processing...updating label data:'" + + "'"; updatepanel1.contenttemplatecontainer.controls.add(label1); updatepanel1.update(); thread.sleep(1000); } }
so want see label value update ui each time when loop changes label value.
Comments
Post a Comment