Tagged Questions

UpdatePanel is an ASP.NET AJAX control which allows page content to be updated asynchronously.

learn more… | top users | synonyms

42
votes
9answers
33k 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 ...
27
votes
4answers
9k views

How to have a javascript callback executed after an update panel postback?

I'm using a jQuery tip plugin to show help tips when the user hovers certain elements of the page. I need to register the plugin events after the page is loaded using css selectors. The problem is ...
17
votes
8answers
39k views

ModalPopupExtender OK Button click event not firing?

I have a Button inside an UpdatePanel. The button is being used as the OK button for a ModalPopupExtender. For some reason, the button click event is not firing. Any ideas? Am I missing something? ...
15
votes
13answers
46k views

Problem with ScriptManager.RegisterStartupScript in WebControl nested in UpdatePanel

I am having what I believe should be a fairly simple problem, but for the life of me I cannot see my problem. The problem is related to ScriptManager.RegisterStartupScript, something I have used many ...
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, ...
15
votes
1answer
1k 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 ...
14
votes
5answers
19k views

How to call a client side javascript function after a specific UpdatePanel has been loaded

How is it possible to call a client side javascript method after a specific update panel has been loaded? Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler) does not work ...
13
votes
5answers
20k 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> ...
13
votes
6answers
8k 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 ...
11
votes
3answers
2k 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 ...
11
votes
6answers
15k views

ASP.NET UpdatePanel Time Out

I'm making a request from an UpdatePanel that takes more then 90 seconds. I'm getting this timeout error. "Microsoft JScript runtime error: Sys.WebForms.PageRequestManagerTimeoutException: The ...
11
votes
4answers
5k views

ASP.NET Validators inside an UpdatePanel

I'm using an older version of ASP.NET AJAX due to runtime limitations, Placing a ASP.NET Validator inside of an update panel does not work. Is there a trick to make these work, or do I need to use the ...
9
votes
4answers
595 views

Jquery Validation And Update Panel Together

I m trying to use jquery validation plugin but my form is in update panel. So even after applying the validation on submit the form it validates and shows the required message for hardly 2 seconds ...
9
votes
4answers
5k 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?
9
votes
8answers
4k 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 ...
8
votes
5answers
300 views

UpdatePanel seems to re-encode characters in the page title?

I have pages with special characters in the title for proper typography, for example it says Exchange ‘07 Groups" with a proper apostrophe, not a single quote. The HTML entity for the apostrophe ...
8
votes
4answers
216 views

Is is possible to determine when an element has been rendered using JavaScript?

Is there a jQuery equivalent to do the following: $(document).ready(function() { for an element: $(a).ready(function() { I have content in an updatepanel and I am calling jQuery UI's .button() ...
8
votes
6answers
11k views

Problem with textbox inside updatepanel - not causing OnTextChanged event

I have the following situation: I have a textbox inside an ajax updatepanel. Wherever the user types in the textbox I must display a message (different message that depends on the user typed data). ...
8
votes
3answers
4k 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 ...
7
votes
2answers
420 views

How to retain script block on a partial postback?

This is a problem I'm facing in a webapp I'm currently working on. So instead of cluttering the question with unrelated code, I recreated the problem in an isolated, simplified webapp that only ...
7
votes
5answers
265 views

Is there a reason to prefer jQuery.Ajax to asp.net UpdatePanel?

If I am developing an asp.Net application, can there be some cases where I should forget about MS Ajax UpdatePanels and prefer jQuery.Ajax to update some part of my page? Thank you
7
votes
4answers
2k views

Calling a jquery function from code behind in asp.net doesn't seem to work

I am calling a jquery function after inserting a record to database... ScriptManager.RegisterClientScriptBlock(LbOk, typeof(LinkButton), "json", "topBar('Successfully ...
7
votes
3answers
1k views

How to get the id of Updatepanel which initiated a postback

Hi I need to intercept server callback after udate panel async post back and determine which panel initiated the request. The code is pretty simple: ...
7
votes
5answers
2k views

TinyMCE with AJAX (Update Panel) never has a value

I wanted to use a Rich Text Editor for a text area inside an update panel. I found this post: http://www.queness.com/post/212/10-jquery-and-non-jquery-javascript-rich-text-editors via this question: ...
7
votes
5answers
13k views

ASP.NET - UpdatePanel and JavaScript

Is there a way to execute script when an UpdatePanel process is finished. I have a page that allows "inserting", "copying", and "editing" of a record. This is all done on an UpdatePanel to prevent a ...
7
votes
6answers
7k views

Looking for a workaround for IE 6/7 “Unspecified Error” bug when accessing offsetParent; using ASP.NET AJAX and jQuery

I'm using jQuery UI's draggable and droppable libraries in a simple ASP.NET proof of concept application. This page uses the ASP.NET AJAX UpdatePanel to do partial page updates. The page allows a user ...
6
votes
1answer
188 views

PageMethods and UpdatePanel

I have a page hierarchy as the following I want to execute a PageMethod if I click the 'SAVE' button, so I coded like the following On Button Click I called OnClientClick="return ...
6
votes
5answers
3k views

Best alternative solution for ASP.NET AJAX UpdatePanel [closed]

Best alternative solution for ASP.NET AJAX UpdatePanel for dynamically add and remove user controls without full postback
6
votes
5answers
848 views

I am trapped in the UpdatePanel trap

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 one ...
6
votes
4answers
3k 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) { ...
6
votes
3answers
5k views

Registering a dynamic javascript after an UpdatePanel's update

I have a page with a dynamicly created javascript (the script is pretty static really, but the value of its variables are filled based on user input). The result and the controls to take user input ...
6
votes
8answers
6k 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 ...
5
votes
1answer
117 views

ASP.NET: UpdateProgress doesn't work with controls that have ClientIDMode=“Static”

Look at this markup: <asp:UpdatePanel ID="Panel1" runat="server" UpdateMode="Conditional"> <ContentTemplate> <asp:DropDownList ID="cboBox1" ClientIDMode="Static" ...
5
votes
4answers
449 views

Can I use HTML5 WebSockets for tasks usually accomplished with AJAX?

I just started researching HTML5 WebSockets. I was wondering whether I can update all of a web page's content with websockets instead of using ASP.NET UpdatePanels, or would this be overkill? Can ...
5
votes
4answers
514 views

How to update controls[DataGrid,TextBoxes and Label] based on a row selection made in DataGrid that resideds in a updatePanel?

I have got a grid[Grid1] that build its dataRows when a button[search] is clicked, I managed to Ajaxify it by placing it in an UpdatePanel and it worked fine. Before Ajaxifying Grid 1, another ...
5
votes
2answers
830 views

ASP.NET updatepanel inside hidden panel possible bug

The JavaScript generated by the asp.net SciptManager control seems to have a bug and cant handle hidden UpdatePanels. A JavaScript error is thrown when a control within one updated panel tries to ...
5
votes
3answers
2k views

FileUpload Doesn't Work When Nested In UpdatePanel? C#

<asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <asp:FileUpload onchange="clickTheButton();" ID="FileUpload1" ...
5
votes
6answers
2k views

Custom Server Control causes full postbacks inside of UpdatePanel

I have a custom server control that seems to work fine until I put it in an UpdatePanel. Once inside the UpdatePanel it continues to work fine but the UpdatePanel now does full postbacks when my ...
5
votes
10answers
7k views

How to make TinyMCE work inside an UpdatePanel?

I'm trying to do something that many people seem to have been able to do but which I am unable to implement any solution. The TinyMCE control works pretty well in an asp.net form until you enclose it ...
5
votes
1answer
12k views

jquery datepicker ms ajax updatepanel doesn't work after post back

So I did some reading of the related questions and had some interesting stuff but did not find my answer, at least did not understand the answer. I am very new to AJAX, javascript and sclient side ...
5
votes
4answers
4k views

Update Panel rendering table row wrong

I am having an issue when my asp.net AJAX Update Panel updates it renders the contents at the top of my table rather than in the place it belongs below is my code: <tr> <td> ...
4
votes
4answers
97 views

Detecting focussed control in C#

I have an update panel which is causing a postback on part of the page and after postback the control that had focus (which is not in the update panel) loses focus. How can I identify which control ...
4
votes
1answer
165 views

How to successfully POST to an old ASP.NET site utilizing Asynchronous Postback

I'm trying to parse data from a site using ASP.NET. This site has a login page that I've successfully traversed (using a legitimate account) and stored the cookie for, but when I get deeper into the ...
4
votes
1answer
255 views

Embedded javascript does not work after async postback from UpdatePanel

I have created a server control where I have embedded some JavaScript files. This works ok, but when the server control is put within an ajax UpdatePanel, it stops working after an async postback is ...
4
votes
2answers
100 views

Can I “cancel” a long-running process that is happening within an updatepanel?

I have an updatepanel that contains a dropdown that once the page has finished loading that will go and populate the dropdown with the latest data. The data grab can take up to 3 minutes. Can I opt ...
4
votes
4answers
575 views

Execute javascript from inside update panel on every refresh

I have an aspx page which is made of 3 user controls (ascx). I have an update panel wrapping the 3 user controls like this: <asp:UpdatePanel ID="UpdatePanelWrapper" runat="server"> ...
4
votes
1answer
359 views

Load user control and handle post back in ASP.Net

I'm working with asp.net 3.5 c# I've seen a good few questions like this around but havnt actually come across any articles with the answer (maybe just been unlucky with my research!). Basically I'm ...
4
votes
3answers
5k views

Full postback triggered by LinkButton inside GridView inside UpdatePanel

I have a GridView inside of a UpdatePanel. In a template field is a button I use for marking items. Functionally, this works fine, but the button always triggers a full page postback instead of a ...
4
votes
2answers
404 views

<asp:FileUpload with UpdatePanel

Im trying tp upload more than one image, and when each one I upload I will show it in a repeater, but in the code behind the FileUpload1.HasFile is always False , this is a piece of my code : ...
4
votes
3answers
1k views

UpdatePanel, Repeater, DataBinding Problem

In a user control, I've got a Repeater inside of an UpdatePanel (which id displayed inside of a ModalPopupExtender. The Repeater is databound using an array list of MyDTO objects. There are two ...

1 2 3 4 5 28