ajaxpro

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 the AJAX script. This is what I have so far: //default2.aspx.vb <AjaxPro.AjaxMethod()> _ Public Shared Function testSomething(ByVal ...

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 found Same code works locally, so it must be a IIS7 setting? edit, my web.config <httpHandlers...

What is the difference between Microsoft AJAX and AJAX Pro?

Hi all. What is the difference between Microsoft AJAx and AJAX Pro? Also, for what should I use AJAX Pro? ...

date format using Ajaxpro

hello everyone i 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" Please help! ...

AjaxPro and OnTimeOut error

Hi, 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 release of AjaxPro, but does any of you have a version which doesn't contain that error? Or how can I correct it? I have downloaded the la...

Asyncron calls with AjaxPro

Hi, 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 would like to add some properties to the AjaxMethod MyMethod, but how is it done? <script type="text/javascript"> function callback(res) ...

system.net.mail message and ajaxpro

Hi Experts, I am trying to send a mail (Forgot password) to the client using ajax pro. so when the control enters the function and creates the object MailMessage mm = new MailMessage(ConfigurationService.GetFromEmailAddress(), To); , it fails. but works otherwise. It also works when I use system.web.mail. Is there any particular reaso...

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 need these to be present on a few pages, not the entire site. In trying to optimize the page download size (particularly for static public...

What dataTypes other than 'number' can I use in ajaxpro bind ?

<input type="text" id="number" bind="{fieldName:'$.Id',dataType:'number'}" /> I would like to know what other dataTypes I can use. ...

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. ...

AjaxPro and ActionChart.ashx are not working together?

Hi, am using actionchart in one of my asp.net 2.0 application. also now am using "AjaxPro.AjaxHandlerFactory,AjaxPro.2" in this application for that i have added one handler in web.config file. <httpHandlers> <!--<add verb="" path=".ashx" type="AjaxPro.AjaxHandlerFactory,AjaxPro.2"/>--> </httpHandlers> </system.web> like that. After...

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? ...

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 formatted date? "/Date(1280381400000)/" ...

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: <div id="divDDL" runat="server"> <asp:Panel ID="Panel1" runat="server"> </asp:Panel> </div> 2) I have a JS script function "getDD...

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 separate locations on the web.config: <location path="ajaxpro/prototype.ashx"> <system.web> <authorization> ...

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 problems could be found at: http://stackoverflow.com/questions/529711/ajaxpro-is-working-locally-...