Tagged Questions
The ajaxpro tag has no wiki summary.
4
votes
2answers
513 views
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 ...
3
votes
5answers
5k views
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 ...
2
votes
1answer
84 views
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.
1
vote
1answer
47 views
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:
...
1
vote
1answer
421 views
Asyncron calls with AjaxPro
I have been working with syncron calls in AjaxPro, and I am now looking into asyncron calls. I have been looking at the example Here
My question is how do I pass variables to my ajaxpro method? I ...
1
vote
3answers
2k views
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?
0
votes
1answer
164 views
Trouble adding web service/service reference on the aspx page
I think I got the web.config right but I'd want to know how to add the service reference or the web service itself on the aspx page so my script could access it.
here's what I did but it doesn't ...
0
votes
1answer
297 views
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 ...
0
votes
1answer
826 views
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. ...
0
votes
1answer
170 views
URL-based authorization and ajaxpro problem
I have an ASP.NET app using Ajaxpro and forms authentication. First I was having trouble trying to avoid passing the ajaxpro handlers through authorization, which was resolved when I included them on ...
0
votes
1answer
100 views
can't get generated controls through AJAX response
I use ASP.NET C# with AJAX Professional (http://www.ajaxpro.info)
1) I have a div container with Panel control, Panel control should hold DropDownList that will be generated in codebehind function:
...
0
votes
1answer
84 views
Passing Date Object With Ajaxpro
I pass an javascript object from client-side to server-side function with Ajaxpro.
In server-side date variables comes inside object are looks like below. What does it mean? How can i parse it to ...
0
votes
1answer
78 views
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 ...
0
votes
1answer
213 views
How do I remove ajaxpro *.ashx handlers from individual pages?
I working on a ASP.NET web project where Ajaxpro.2 is referenced, and it seems automatically to add a bunch of ashx handlers to the page output - ie, core.ashx, prototype.ashx.
The problem is, I only ...
0
votes
2answers
699 views
AjaxPro and OnTimeOut error
I am getting the following error on my AjaxPro project:
Error: this.onTimeout is not a function
Source: http://localhost:3405/ajaxpro/core.ashx
Line: 407
I know it is something to do with the ...
0
votes
1answer
172 views
date format using Ajaxpro
I am using AjaxPro to retreive database, the date field return Sat Apr 3 00:00:00 UTC+0700 1982 i want to format it like "dd/mm/yyyy".
0
votes
4answers
1k views
Passing variables with AjaxPro
I found this AJAX .NET framework the other day, and so far I am enjoying working with it. However, one thing I can't figure out (the documentation is rather poor atm) is how to pass variables through ...