Tagged Questions

A set of extensions to ASP.NET developed by Microsoft for implementing Ajax functionality.

learn more… | top users | synonyms

124
votes
11answers
37k views

jQuery $(document).ready and UpdatePanels?

I'm using jQuery to wire up some mouseover effects on elements that are inside an UpdatePanel. The events are bound in $(document).ready . For example: $(function() { ...
51
votes
6answers
37k views

ASP.NET MVC controller actions that return JSON or partial html

I am trying to create controller actions which will return either JSON or partial html depending upon a parameter. What is the best way to get the result returned to an MVC page asynchronously?
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 ...
38
votes
7answers
24k views

How can I deserialize JSON to a simple Dictionary<string,string> in ASP.NET?

I have a simple key/value list in JSON being sent back to ASP.NET via POST. Example: { "key1": "value1", "key2": "value2"} I AM NOT TRYING TO DESERIALIZE INTO STRONGLY-TYPED .NET OBJECTS I simply ...
34
votes
1answer
1k views

Javascript error when using Messenger Connect client-side library in ASP.NET

I'm having a problem implementing the new Messenger Connect functionality inside an existing Sitefinity site to enable client logins using Live IDs. Namely, when I'm using the following code to ...
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 ...
26
votes
3answers
25k views

ASP.NET MVC modal dialog/popup best practice

I am looking for the most standard way to archive modal dialogs in ASP.NET MVC. An example of what I am trying to do is when I select an item from my "list" page, I want the "details" page to be a ...
25
votes
7answers
15k views

One Update Panel vs. Multiple Update Panels

I have an ASP.NET web page that displays a variety of fields that need to be updated best on certain conditions, button clicks and so on. We've implemented AJAX, using the ASP.NET Update Panel to ...
20
votes
11answers
33k views

ASP.Net free Ajax file upload control

I need an ASP.NET control for file uploads that can work in an update panel. Any ideas?
17
votes
6answers
2k views

Is there any reason why MicrosoftAjax.js is not minified?

I compress my own JS using YuiCompressor, but is there any reason why MicrosoftAjax.js not minified? Or is there some setting to say run the compressed version of it (if there is a compressed ...
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
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 ...
15
votes
14answers
4k views

ASP.NET webforms + ASP.NET Ajax versus ASP.NET MVC and Ajax framework freedom

If given the choice, which path would you take? ASP.NET Webforms + ASP.NET AJAX or ASP.NET MVC + JavaScript Framework of your Choice Are there any limitations that ASP.NET Webforms / ...
14
votes
4answers
6k views

How can I convince IE to simply display application/json rather than offer to download it?

While debugging jQuery apps that use AJAX, I often have the need to see the json that is being returned by the service to the browser. So I'll drop the URL for the JSON data into the address bar. ...
13
votes
4answers
8k views

Serialize Entity Framework objects into JSON

It seems that serializing Entity Framework objects into JSON is not possible using either WCF's native DataContractJsonSerializer or ASP.NET's native JavaScript Jersializer. This is due to the ...
13
votes
4answers
6k views

Pros and cons of MS Ajax vs. jQuery in an ASP.NET MVC app?

Now that RC1 is out I need to decide once and for all whether to use MS Ajax libraries or just jQuery for AJAX requests. The application is a new application. Essentially the way I'll decide is ...
13
votes
17answers
32k views

Sys is undefined

I have an ASP.Net/AJAX control kit project that i am working on. 80% of the time there is no problem. The page runs as it should. If you refresh the page it will sometimes show a javascript error ...
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> ...
11
votes
5answers
2k views

Thread Safety in Javascript?

I have a function called save(), this function gathers up all the inputs on the page, and performs an AJAX call to the server to save the state of the user's work. save() is currently called when a ...
11
votes
9answers
2k views

Any downsides to using ASP.Net AJAX and JQuery together

We are planning to use the JQuery library to augment our client side JavaScript needs. Are there any major issues in trying to use both ASP.Net AJAX and JQuery? Both libraries seem to use $ for ...
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 ...
10
votes
4answers
2k views

jQuery vs MicrosoftAjax in ASP.NET MVC

Under what circumstances would you use MicrosoftAjax over jQuery in an ASP.NET MVC application? According to Scott Cate in this podcast Object Oriented AJAX with Scott Cate MicrosoftAjax is good for ...
10
votes
3answers
3k views

Globally log exceptions from ASP.NET [ScriptService] services

I'm using the [System.Web.Script.Services.ScriptService] tag to use web services callable from client side javascript. What I need is a way of globally logging any unhandled exceptions in those ...
10
votes
5answers
19k views

How to use Ajax.BeginForm MVC helper with JSON result?

I'm trying to use the ASP.NET MVC Ajax.BeginForm helper but don't want to use the existing content insertion options when the call completes. Instead, I want to use a custom JavaScript function as the ...
10
votes
4answers
27k views

Sys.WebForms.PageRequestManagerServerErrorException 12031

I'm occasionaly getting the following popup from an AJAX.NET application Sys.WebForms.PageRequestManagerServerErrorException: An Unknown error occurred while processing the request on the server. The ...
9
votes
9answers
370 views

Loading usercontrols on demand under jquery tabs

I have few jquery tabs on a usercontrol that loads a separate user control under each. Each user control is unique. It all works fine right now but the overall page response is too slow. In order to ...
9
votes
2answers
8k views

jQuery with ASP.NET MVC 3 books/tutorials?

Are there any books / tutorials on jQuery with ASP.NET MVC 3? I need to learn how to use ajax links and how to submit ajax forms ect. If there aren't any books / tutorials on MVC 3 yet MVC 2 wil ...
9
votes
6answers
18k views

How to post ASP.NET MVC Ajax form using JavaScript rather than submit button

I have a simple form created using Ajax.BeginForm: <% using (Ajax.BeginForm("Update", "Description", new { id = Model.Id }, new AjaxOptions { UpdateTargetId = "DescriptionDiv", ...
9
votes
4answers
3k views

Page losing title after UpdatePanel asyncpostback

I have just noticed recently that my page title will reset to the standard "Untitled Page" after I perform an asyncpostback from inside my UpdatePanel in the main page. The title will not be lost ...
9
votes
2answers
2k views

Stackoverflow Style Notifications in asp.net Ajax

When you get a badge or aren't logged in to stack overflow there's a groovy little notification bar at the top of the page that lets you know there's something going on. I know the SOflow team use ...
8
votes
2answers
920 views

when to use knockout javascript with ASP.NET MVC

What factors should I consider before adopting the Knockout JavaScript library for my application? Currently I have a ASP.NET MVC 2 site. Most of the navigation and set up of the site is simple get ...
8
votes
5answers
583 views

What DOCTYPE should I target today?

I'm refactoring a .Net web application that is in <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > Right now the approach is just to aim for the stars and go for the latest ...
8
votes
3answers
5k views

How do I force full post-back from a button within an UpdatePanel?

Any help will be appreciaded.
8
votes
1answer
6k views

What's the different between ASP.NET AJAX pageLoad() and JavaScript window.onload?

I'm working with ASP.NET AJAX and want to understand the difference between these two snippets: function pageLoad(sender, eventArgs) { } and window.onload = function() { } Do they act the ...
8
votes
9answers
19k views

The base class includes the field 'ScriptManager1', but its type (System.Web.UI.ScriptManager) is not compatible with the type of control (System.Web.UI.ScriptManager)

"The base class includes the field 'ScriptManager1', but its type (System.Web.UI.ScriptManager) is not compatible with the type of control (System.Web.UI.ScriptManager)." Anyone else come across this ...
8
votes
5answers
6k views

Ajax Script Manager and Master Pages

I'm building a new website and want to use Ajax controls. Do I need to put a ScriptManager control on both the MasterPage and on each content page? or Just on the MasterPage?(or just on the content ...
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 ...
8
votes
7answers
4k views

Extending Forms Authentication Timeout When Making AJAX Calls With jQuery

I'm looking to rewrite a pretty intensive CRUD type ASP.NET page to utilize ajax calls (specifically jQuery ajax). My concern in doing this is that the user may be on this page longer than the forms ...
8
votes
2answers
8k views

Programmatically Adding User Controls Inside An UpdatePanel

I'm having trouble dynamically adding controls inside an update panel with partial postbacks. I've read many articles on dynamic controls and I understand how to add and maintain them with postbacks ...
7
votes
1answer
3k views

Method 'get_EnableCdn' in type 'System.Web.UI.ScriptManager' from assembly 'System.Web.Extensions' does not have an implementation

Can anyone explain a perse error like this one: "Method 'get_EnableCdn' in type 'System.Web.UI.ScriptManager' from assembly 'System.Web.Extensions, Version=3.5.0.0, Culture=neutral, ...
7
votes
5answers
551 views

Is the ASP.NET Ajax Library dead?

I've recently stumbled across a few blogs that say the ASP.NET Ajax Library is dead, in particular: http://encosia.com/2010/10/04/understanding-jquerys-impact-on-microsoft-and-asp-net/ ...
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
3answers
1k views

asp mvc.net Dashboard suggestions

I'm currently building an inhouse mvc.net reporting app. So far the pages charts etc have been relatively hard coded. i.e. 1 page for this chart, another page for this table. But I'd like to extend it ...
7
votes
4answers
3k views

Which Javascript history back implementation is the best?

There are implementations for history.back in Micrososft AJAX and jQuery (http://www.asual.com/jquery/address/). I already have jQuery and asp.net ajax included in my project but I am not sure which ...
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
2answers
18k views

Deserializing JSON objects as List<type> not working with asmx service

I am having trouble deserializing my JSON string. I have a class of type person with public properties for sequence number of type int, first name, and last name. I want to pass an array of these ...
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 ...
7
votes
7answers
3k views

asp:UpdateProgress - surpressing the line-break

I've started working with ASP.net AJAX (finally ☺). and I've got an update panel together with a asp:UpdateProgress. My Problem: The UpdateProgress always forces a line-break, because it renders out ...
6
votes
2answers
1k views

LinkButton in ListView in UpdatePanel causes full postback

I have a LinkButton in a ListView in an UpdatePanel. I would like the button (well, any of them) to cause a partial postback, but they are causing a full page postback. <asp:UpdatePanel ...

1 2 3 4 5 50