Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
362 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
213 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
870 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
981 views

How to always trigger an Asynchronous PostBack for an UpdatePanel from a Button in a DataList?

I have a DataList that has a collection of People bound to it, with each Person having a Button that when clicked needs to cause an asynchronous postback so the OnClick event handler can change 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
98 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
1answer
62 views

Show me a way to connect webservices asynchronously on Android

I do not use ksoap2 The callings must be asynchronously because other way honeycomb does not accept and it throws this exception ...
1
vote
2answers
852 views

In ASP.NET MVC how best to design/code asynchronous partial postback of <DIV>

On a MVC View (.aspx) enclosed in a Form, there are several controls - grids, textboxes - that display data relating to a subject, a person. The form does not require a submit button because the great ...
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
97 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
3answers
888 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
986 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" ...