Version 6.4.26.1

 - Added missing enum support for method arguments.
 - New test methods in example.aspx need App_Code\enumtest.cs.
 - Changed ProfileService, returns now the Profile object. You can access
   the properties using res.value.MyProperty (name of the property configured
   in web.config). To set a property use
res.value.setProperty("MyProperty", "Hello world!").
   Setup Profile in your web.config like this example:
        <profile>
                <properties>
                        <add name="MyProperty" type="System.String"/>
                </properties>
        </profile>
        function demo_profile() {
                var x = AjaxPro.Services.Profile.GetProfile().value;
                alert(x.MyProperty);
                x.setProperty("MyProperty", "Hello world!");
                alert(x.MyProperty);
        }
 - Renamed property IAjaxprocessor.Method to AjaxMethod to be CLSCompliant.



--
Best regards | Schöne Grüße
Michael

Microsoft MVP - Most Valuable Professional
Microsoft MCAD - Certified Application Developer

http://weblogs.asp.net/mschwarz/
http://www.schwarz-interactive.de/
mailto:[EMAIL PROTECTED]

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Ajax.NET Professional" group.

To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]

For more options, visit this group at http://groups.google.com/group/ajaxpro

The latest downloads of Ajax.NET Professional can be found at 
http://www.ajaxpro.info
-~----------~----~----~----~------~----~------~--~---

Reply via email to