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, ...
5
votes
1answer
378 views

Concurent asynchronous callbacks

Question to die hard asp.net experts. I have spent much time trying to find an answer or to do it myself but no luck so far. ASP.NET web application. I plan to improve page load time so that user ...
3
votes
1answer
361 views

Update panel and AsyncPostbackTriggers

I would love to add AsyncPostback Triggers dynamically to the ImageButtons found within the UpdatePanel control <asp:Content ID="Content1" ContentPlaceHolderID="Content" runat="server"> ...
2
votes
1answer
208 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
3answers
867 views

Calling postback in asp.net programatically

I am using spgridview with spgridviewpager in update panel. I need to postback using c# in aspx page. I used button field in the spgridview. When i clicked on the button field, i need to raise the ...
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 ...
1
vote
1answer
97 views

ASP.NET asynchronous post-back on asp:button click

I am using AJAX in asp:net and am trying to handle a situation where an asp:button triggers both a javascript method and a codebehind c# method. To do this I am using onclick and onClientClick ...
1
vote
2answers
2k views

Adding a ServiceReference programmatically during async postback

Is it possible to add a new ServiceReference instance to the ScriptManager on the Page during an asynchronous postback so that subsequently I can use the referenced web service through client side ...
0
votes
2answers
24 views

Partial PostBack without AJAX

I want to silently check for Session existence without Posting back page by using AJAX Timer and AsyncPostBack Trigger. Now, I would like to know is there anyway to silently check whether ASP.NET C# ...
0
votes
1answer
96 views

ASP.NET Page_PreRender method

I'm trying to set a htmltablecell.innerHTML from code behind on Page_PreRender. It works fine the first time it's set. Hereafter I need to set the reference to a new value from a string (I have ...
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
1answer
901 views

How to keep whole page scroll position after asynchronous postback

i am using asp.net 4.0 iis 7.5 microsoft visual studio 2010 what i want is keep whole page (browser) scroll position (not a div or panel) when asynchronous postback happened (update panel) how can i ...
0
votes
1answer
985 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" ...