Questions tagged [microsoft-ajax]

Microsoft Ajax features enable you to quickly create Web pages that provide a rich user experience and that include responsive and familiar user interface (UI) elements.

About

Microsoft Ajax features enable you to quickly create Web pages that provide a rich user experience and that include responsive and familiar user interface (UI) elements

Microsoft Ajax applications are compatible with all popular modern Web browsers, including Microsoft Internet Explorer, Mozilla Firefox, and Google Chrome.

Official Website

Microsoft Ajax

63 questions
0
votes
1 answer

Getting pageLoad error in MicrosoftAjax.js

I am writing an asp.net web forms website that requires users to login. I am experiencing some errors with the raiseLoad function in MicrosoftAjax.js after they have logged on. MicrosoftAjax.js is loaded as a bundle
Nik
  • 33
  • 9
0
votes
1 answer

JQuery templates or Microsoft DataView?

Greetings, I'm confused about which client-side template engine is recommended by Microsoft. Microsoft announced the release of a jQuery templating engine, while there's another templating engine created by microsoft, called the DataView component…
Ashraf Sabry
  • 3,081
  • 3
  • 32
  • 29
0
votes
1 answer

MicrosoftAjax.js - POST 500 (Internal Server Error) upon PostBack

I'm working on an ASP.NET web application. Where I have added an ascx controller with an asp:updatepanel inside. The problem is now that when try to make an update it gives the following error: MicrosoftAjax.js:5 POST http://localhost:49735/ 500…
Michael Tot Korsgaard
  • 3,892
  • 11
  • 53
  • 89
0
votes
1 answer

How can I make a div visible Before the page has finished loading

I have a page i've built in ASP.NET using WebForms. I have a couple of UpdatePanels which seem to be working fine. But i've hit a problem. I have a combobox and when the value is changed it connects to TFS and retrieves details of projects in order…
Festivejelly
  • 670
  • 2
  • 12
  • 30
0
votes
1 answer

MicrosoftAjax date.format function not working in Chrome

There is a bug in MicrosoftAjax.js String.format function when using Chrome 5.0.375. The function randomly returns 'undefined' for some dates. I went around that by using jquery date formatter that comes with datepicker.
0
votes
0 answers

Microsoft AJAX with debugger

There is a couple of problems which is related to microsoft ajax and visual studio when it is attached to w3wp. When i run my site when Visual studio hasn't been attached to it microsoft ajax works fine. But when i have attached to VS and use site…
Vladyslav Furdak
  • 1,765
  • 2
  • 22
  • 46
0
votes
1 answer

what is the equivalent for ajaxComplete if I use a xhr request?

I'm working in an app and I was catching all the ajax request using: $(document).ajaxComplete(function (xhr, status) { //... }); Now, I'm using MicrosoftMvcAjax and MicrosoftAjax and when a XHR request finished a message in the console…
Benjamin RD
  • 11,516
  • 14
  • 87
  • 157
0
votes
0 answers

MVC5 Ajax.ActionLink() works but Ajax.BeginForm() does not

EDIT - SOLUTION: And the problem is... Typo in controler name: @using (Ajax.BeginForm("_AddNote", "Request", new AjaxOptions // controller should be "Requests" What to say... end edit I have a stupid problem that I can't figure out by myself. I…
HerGiz
  • 907
  • 1
  • 12
  • 21
0
votes
1 answer

What does the MS Ajax Framework use location.hash for?

I've noticed that the MS ajax framework touches the action of the default form during Sys.Application.initialize, appending location.hash to it. This is interfering with other code in my app that expects different behaviour. What does the framework…
Dan Davies Brackett
  • 9,811
  • 2
  • 32
  • 54
0
votes
1 answer

UpdatePanel not refreshing in Accordion

I'm using MS AJAX's accordion control. It works fine normally, but I can't seem to get it to work with an UpdatePanel. My layout is like this:
keyboardP
  • 68,824
  • 13
  • 156
  • 205
0
votes
1 answer

The whole page loads with ajax mvc

I'm new to MVC and ajax, and I just can't make an example from MSDN work : http://msdn.microsoft.com/fr-fr/library/dd381533(v=vs.100).aspx This code reloads the entire page when I clic on the actionlink or the button. I have the scripts…
0
votes
1 answer

UpdatePanel async request hangs when there is a content-length mismatch

I have a family member selection control inside an update panel. When I click one of the family member tabs the update panel does a partial postback and causes other update panels on the page to do a partial postback as well. My problem is that in…
Elad Lachmi
  • 10,406
  • 13
  • 71
  • 133
0
votes
2 answers

Object [object global] has no method 'attachEvent'

I have a WebForms page which is including MicrosoftAjax.debug.js (4.1.7.123) as a script resource: // Name: MicrosoftAjax.debug.js // Assembly: AjaxControlToolkit // Version: 4.1.7.123 // FileVersion: 4.1.7.0123 // (c) 2010 CodePlex…
Brett Postin
  • 11,215
  • 10
  • 60
  • 95
0
votes
1 answer

Format a number as phone number in MS Ajax

How to format a number as phone number (e.g. (45)879-2658 ) using MS Ajax formatting. In C#, i can format this number using {0:(###)###-####} . But not sure how to achieve this format in MS Ajax for an integer.
RGR
  • 1,521
  • 2
  • 22
  • 36
0
votes
1 answer

Update in MicrosoftAjax.js is not reflect in my local Visual Studio 2005

I got java script error: SCRIPT5022: Sys.ArgumentOutOfRangeException: Value must be an integer. Parameter name: y Actual value was 326.739990234375. When I testing application in IE 10 browser. I did googling and found this solution from…