Questions tagged [ajaxpro]

Ajax.NET Professional (AjaxPro) is one of the first AJAX frameworks available for Microsoft ASP.NET and is working with .NET 1.1 and 2.0.

The framework will create proxy classes that are used on client-side JavaScript to invoke methods on the web server with full data type support working on all common web browsers including mobile devices. Return your own classes, structures, DataSets, enums,... as you are doing directly in .NET.

AjaxPro FAQ

Setup your web application for AjaxPro What do I need to start? How do I setup my web application to use AjaxPro?

Your first Ajax request My first Hello World example How to use DateTime on the client-side JavaScript? How to return my custom class in an AjaxMethod?

Community and Forum I've removed the forum here because there is already a forum available at the Google groups with more than 4.000 users: http://groups.google.com/group/ajaxpro/

My Blog My blog is available at http://weblogs.asp.net/mschwarz/ where I will write about Ajax news and other .NET related stuff.

Demo See http://www.ajaxpro.info/ for some examples on how to use AjaxPro. Last edited May 18, 2012 at 12:19 AM by interactive, version 22

30 questions
7
votes
4 answers

jquery autoComplete with List as Source

i have text box name txtEmailList, i provided autocomplete list for it, script for autocomplete $('#txtEmailList').autocomplete({ source: function(request,…
Ravi Gadag
  • 15,735
  • 5
  • 57
  • 83
7
votes
7 answers

AjaxPro is working locally, but on server I am getting .ashx errors

Locally my application works fine using ajaxpro, but on the server I can't seem to figure out why it is not working. using firebug I have the following erros: GET prototype.ashx 404 not found GET core.ashx 404 not found GET ms.ashx 404 not…
popopo
5
votes
3 answers

ConnectFailure in AjaxPro on certain browsers

This issue has been reproduced on PlayStation 3, 4, Xbox360, Xbox One. This issue is present with all versions of AjaxPro. When making an Ajax request (using AjaxPro) the server returns the correct content. However, the object returned in the call…
Roman Mik
  • 3,179
  • 3
  • 27
  • 49
4
votes
2 answers

Framework Similar to ASP.Net AjaxPro

Currently, I'm using AjaxPro Framework (http://www.ajaxpro.info/) to call any methods in my web application from the client side. But users have some serious problems using it. (e.g success callbacks don't work in Chrome. More info about the…
Kamyar
  • 18,639
  • 9
  • 97
  • 171
3
votes
1 answer

AjaxPro Not Running On .Net Framework 4.0 and Server 2008 / IIS 7

I'm using AjaxPro & AjaxControlToolkit in my project. My project is normally running on Server 2003 with IIS 6. But when i loaded my project on Server 2008, i'm getting "AjaxPro undefined" error. My project is working .Net Framework 4.0 Classic…
ismailperim
  • 1,522
  • 2
  • 16
  • 24
2
votes
1 answer

How to find location of .ashx files on server

Background: My employeer at my non-programming job knows that I am an undergraduate CS student with some experience in web development. He has severed ties with the previous web developer he hired after a sour experience, and he's paying me to make…
FunkyDelPueblo
  • 167
  • 1
  • 11
2
votes
3 answers

What is the difference between Microsoft AJAX and AJAX Pro?

What is the difference between Microsoft AJAx and AJAX Pro? Also, for what should I use AJAX Pro?
Ahmed Atia
  • 17,848
  • 25
  • 91
  • 133
2
votes
1 answer

In ajax-pro Can I use custom class as proxy instead of system.web.ui.page? and How?

In ajax-pro Can I use custom class as proxy instead of system.web.ui.page? and How? basically I want to use html file with ajax-pro thanks for your time.
Rakib Mia
  • 21
  • 1
2
votes
0 answers

AjaxPro request times out early in Safari

I have the following issue that is only occurring safari (5.1 on Windows and 6 on a Mac), I am using AjaxPro to send a request by doing : AjaxPro.timeoutPeriod = 1800000; var r = new AjaxPro.Request(); r.url = this.url; return r.invoke(method,…
Art F
  • 3,992
  • 10
  • 49
  • 81
1
vote
1 answer

AjaxPro for .NET

I am new to Ajax .I have used AjaxPro In ASPX page for executing method .I have used below code for .NET 2.0 In ASPX: $(function() { $( "#sortable" ).sortable({ placeholder: "ui-state-highlight", update: function(event,…
Sree
  • 584
  • 6
  • 20
1
vote
1 answer

jQuery Ajax, weird response from .NET server

I'm trying to replace an ajaxpro script with jQuery, but the response i'm getting from the server when using either ajaxpro or jquery is something i don't recognise. This is the jquery call: $.ajax({ type: "POST", contentType:…
t.mikael.d
  • 5,054
  • 2
  • 16
  • 11
1
vote
1 answer

Ajaxpro:How to transmit javascript multidimensional array to the ajaxpro method in frontpage

Suppose I have a c# method need array parameter: [AjaxPro.AjaxMethod] public int Test3(string[,] array) { return array.Length; } then I define multidimensional array in front page with javascript: var array = [ ["a", "b", "c", "d"], …
hh54188
  • 14,887
  • 32
  • 113
  • 184
1
vote
1 answer

scrapy - AjaxMethod not available

I am trying to practice learning Scrapy web crawling and using a classified car site for the subject in order to check into countermeasures. I know that the X-AjaxPro-Method exists because Chrome Developer Tools shows the headers being passed and…
jcaster
  • 13
  • 4
1
vote
1 answer

What are the implications/consequences of the AjaxPro HttpSessionStateRequirement?

I know the different options (None, ReadWrite, Read) and what they mean, but are there any other implications? Does ReadWrite take a performance hit compared to None, for example? Are there other consequences, or things to keep in mind?
Peter
  • 13,733
  • 11
  • 75
  • 122
1
vote
0 answers

AjaxPro equivalent to DataContract renaming such as [DataMember(Name = "FooBar")]

I use AjaxPro to write do requests like: [AjaxMethod] public MyClass GetMyClass() { return new MyClass(); } Where MyClass holds fields like: public class MyClass { [AjaxNonSerializable] public string DoNotSerialzeMe; [AjaxProperty] …
Sebastian
  • 5,721
  • 3
  • 43
  • 69
1
2