it contains ajax uploader and text box and labelwhat i need to do it when upload complete what i wrote in text box go to label without refresh page\[code\]<html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"><title></title></head><body><form id="form1" runat="server"><div> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <asp:AjaxFileUpload ID="AjaxFileUpload1" runat="server" onuploadcomplete="AjaxFileUpload1_UploadComplete" /> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label></div></form></body></html>\[/code\]and here is my C# code\[code\]protected void AjaxFileUpload1_UploadComplete(object sender,AjaxControlToolkit.AjaxFileUploadEventArgs e){ string path = Server.MapPath("~/nn/") + e.FileName; AjaxFileUpload1.SaveAs(path); Label1.Text = TextBox1.Text;}\[/code\]the problem is that the ajax controller event cant feel .net components any help ?