DCSIMG
AJAX - Maor's Blog

Browse by Tags

Visual Studio 2008 and .NET Framework 3.5 Training Kit
Microsoft released a nice training kit (~126MB) (it's a real treasure!) for the latest technologies. This package covers a bunch of technologies and includes presentations, hands-on labs, and demos. This content is designed to help you learn how to utilize the Visual Studio 2008 features and a variety of framework technologies including: Visual Studio Tools for Office Visual Studio Team System Application Lifecycle Management C# 3.0 VB 9.0 LINQ WPF WCF WF Silverlight ASP.NET AJAX CardSpace Mobile...
ASP.NET AJAX Toolkit: new version available for download
I've just noticed there's a new release of the Ajax Toolkit control with several improvements. Scott Guthrie has a cool post on the new stuff in the toolkit. You can get it from here .
How to: Calling Web Services methods from Client Script in ASP.NET AJAX
My previos post explained the way to expose a web service to client script in Ajax. This post will introduce the "How to" call the web service's method from the client script. Our web service is: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 namespace MySamples.BL { [WebService(Namespace = "http://tempuri.org/" )] [ScriptService] public class MyWebService : System.Web.Services.WebService { [WebMethod] public string PrintString(String input) { return input; } [WebMethod] public string SayHello() {...
How to: Expose Web Services to Client Script in AJAX
AJAX enables you to call ASP.NET Web services by using client script. There are several steps to enable the web service exposing. 1. Qualify the Web service class with the ScriptServiceAttribute attribute: 1 2 3 4 5 6 7 8 9 [ScriptService] public class MyWebService : System.Web.Services.WebService { [WebMethod] public string PrintString(String input) { return input; } } 2. Configure the Web application to support calling Web services from script. Register the ScriptHandlerFactory HTTP handler in...

Search

Go

This Blog

News

    RSS

     

    Connect with Me

    Maor's Facebook profile  Follow Maor on Twitter  Maor's profile on Linkedin  Maor in FriendFeed 
           

Syndication