Tagged Questions

15
votes
6answers
13k views

File uploading in AJAX updatepanel without full postback

I have a update panel, in the update panel I have fileupload control and button control, On button click, I need the file that I have upload in the fileupload control in updatepanel. Exact scenario, ...
2
votes
1answer
217 views

ASP.NET with jQuery popup dialog: how to post back on dialog closing

Folks, I'm working on a rather complicated site. We have an update panel that contains some controls. When one of the controls is clicked, a jQuery dialog box opens. When the dialog box closes, I ...
2
votes
1answer
1k views

Is there any workaround for the UpdatePanel + Server.Transfer problem?

I'm trying to use an UpdatePanel in my ASP.NET application. Unfortunately, it seems that I can't do this if I am using Server.Transfer() in my application. Modifying that component of the application ...
0
votes
1answer
86 views

popup is getting disaapeared after dropdown selection

<asp:Panel id="container" CssClass="container" runat="server" style="width:850px"> <asp:Panel runat="server" id="header" cssClass="header" > <div ...
0
votes
3answers
890 views

Force Postback from code behind? Or reload JavaScript from an Asynchronous Postback?

I've got a Jquery UI dialog that pops up to confirm the creation of an item after filling out a form. I have the form in an update panel due to various needs of the form, and especially because I want ...
0
votes
1answer
992 views

Async trigger for an update panel refreshes entire page when triggering too much in too short of time

I have a search button tied to an update panel as a trigger like so: <asp:Panel ID="CRM_Search" runat="server"> <p>Search:&nbsp;<asp:TextBox ID="CRM_Search_Box" ...