Showing posts with label download. Show all posts
Showing posts with label download. Show all posts

Saturday, March 24, 2012

Query about ajax

Hi

can any body tell me what is ajax controls? how can i download ajax controls freely

Ajax controls are the web controls like textbox etc which uses ajax technology means can talk to the server without the entire page being posted back.

There are many Ajax toolkit available in teh market to develop this kind of controls. Two of the most popular are

Microsoft ajax toolkit ( Also known as ATLAS )

Download at :http://ajax.asp.net/

Yahoo UI control Library.

Download at :http://developer.yahoo.com/yui/

Extension to yahoo UI library :

http://www.yui-ext.com/deploy/yui-ext/docs/


Hi hemant ,

Thanks for your reply. actually i needed datepIcker calendar Control Can i download from this site freely with No licence


Hi,

For that why you need Ajax control? Calender control is available out the box for you when you use web forms. Just look into the tool box.

Question about AJAX and WCF duplex services

OK, I have some existing WCF services that are working with a thick client download, but now we are trying to add a web front end option. I was able to get the one way services working easily by adding a web service page as a simple wrapper around the WCF calls. Now I need to look at our services that are duplex though. Is there a way to do this with the AJAX libraries that are out now? If not, is there a timeframe for when Microsoft might release the next preview that has WCF functionality added back in? And how stable was the older release that still had WCF functionality? Would it work with the release version of WCF?No unfortunately, ASP.NET AJAX has no support for WCF yet. It will be available in future versions. You can use POX to call WCF services but that will be one way and in that case you also should not have a service contract in your WCF service.
Well, if anyone else is caught in a situation like this in the interim, I found a pretty good workaround, at least for my situation. I actually wrote a second WCF service that acts as an aggregator of the first one. The new service only exposes plain http web services, so I can call it no problem from the AJAX code. The aggregator gets the duplex messages from the main server, so it updates in its memory in real time, and then the web page just polls it every few seconds for updates. It's not perfect, but it does what I need for now.