14
votes
6answers
5k views
Rebinding events in jquery after ajax update (updatepanel)
I have several input and option elements on my page, each (well almost) have an event attached to update some text on the page once they change. I use JQuery which is really really cool :) I also use …
8
votes
1answer
412 views
How can you tell if a method is being run in UpdatePanel postback?
How can I tell if a method is running in the context of an AJAX postback (i.e as the result of a UpdatePanel (asynchronous) postback)?
According to egoldin Page.IsAsync is a very common confusion …
7
votes
5answers
4k views
How to call a client side javascript function after a specific UpdatePanel has been loaded
How is is possible to call client side javascript method after a specific update panel has been loaded?
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler) does not work …
7
votes
5answers
4k views
FileUpload control inside an UpdatePanel without refreshing the whole page?
According to Microsoft the FileUpload control is not compatible with an AJAX UpdatePanel.
I am aware that a PostBackTrigger can be added to the submit button of the form like this:
<Triggers>
…
7
votes
6answers
2k views
jQuery AJAX vs. UpdatePanel
We've got a page with a ton of jQuery (approximately 2000 lines) that we want to trim down b/c it is a maintenance nightmare, and it might be easier to maintain on the server. We've thought about …
6
votes
3answers
179 views
jQuery UI + ASP.NET UpdatePanel - Is it worth it?
I really like the looks of jQuery UI and I'd love to integrate it into my ASP.NET Web Applications. I like the themes and how easy it is to use the widgets. I'm currently using AJAX Control Toolkit …
5
votes
5answers
650 views
Advantages and disadvantages of using Ajax update panels in ASP.NET application
What are the advantages and disadvantages of using Ajax update panels in ASP.NET application. Is there any alternatives available to avoid the use of Ajax update panel?
5
votes
1answer
782 views
How to control which JavaScript gets run after UpdatePanel partial postback endRequest?
I know I can hook into the client side events to run JavaScript after every partial postback; however, I want to do something like this:
protected void FooClicked(object sender, EventArgs e) {
…
5
votes
7answers
3k 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
4answers
1k views
jquery color animation throws Invalid property value intermittently
I'm trying to animate the background for an ASP.Net hyperlink to do a yellow fade on an update panels refresh. So far it works almost all of the time, but occasionally a javascript error is thrown …
5
votes
9answers
1k views
What causes the ‘Cannot unregister UpdatePanel’ error?
I've got a UserControl that contains an UpdatePanel. WHen I put that on a page, it throws the following error:
Cannot unregister UpdatePanel with ID
'ReviewContentUpdatePanel' since it
was …
4
votes
5answers
245 views
Best alternative solution for ASP.NET AJAX UpdatePanel
Best alternative solution for ASP.NET AJAX UpdatePanel for dynamically add and remove user controls without full postback
4
votes
5answers
349 views
I am trapped in the UpdatePanel trap
Hi
I have a very big problem. I am making a CRM (Costumer Relationship Management) System in ASP.NET 3.5
I have based my entire project on DevExpress.com controls and the use of UpdatePanels.
Now …
4
votes
3answers
910 views
Replace UpdatePanel with JQuery
I'm using UpdatePanel to asynchronously call a button click event in a page that calls a method in another class which writes out an XML file on the output. Is there a way to do this with JQuery …
3
votes
3answers
107 views
update panel issue
For whatever reason - my update panel is not updating. Now please note that this is all inside the item template of a template field inside of a gridview. Major Nesting. Help me,Please
…
