Archives

Archives / 2005 / October
  • Pre-release 5.10.31.1

    I have put online one more pre-release version of the Ajax.NET Pro version. See the list of changes and bug fixes (not complete): - [AjaxMethod(methodName)] has been moved to [AjaxNamespace( … more

  • Pre-release 5.10.28.2

    I published a new pre-release to the Google Ajax.NET Professional group. A short list of fixed bugs: - bool, char and other primitive values are working in both directions - CollectionBase using … more

  • IJavaScriptConverter and class attribute

    If you want to use a converter for your classes you can add the JavaScriptProvider attribute to your class that it will be used without the need of changing the web.config. This will allow developers … more

  • IJavaScriptConverter are back in the next version

    Because I got a lot of feedback that sometimes it would be nice to have my own converter I included the converter interface again. The default converter like IEnumerable, IList, NameValueCollection, … more

  • IHttpAsyncHandler in Ajax.NET Professional

    In the next version I'm using the IHttpAsyncHandler instead of the synchronous handler IHttpHandler. The request now will run in a separate thread that cannot access the HttpContext.Current object. … more

  • IJavaScriptObject in the new version

    With the new version you are able to get the real JavaScript wrapper objects that are used internal to representate the JavaScript objects. This will allow you to post any object from the client-side … more

  • AJAX working as a TCP/IP connection

    Today I have finished a working demonstration using AJAX as a TCP connection. With that demonstration you can use a HTTP connection as a real TCP/IP connection:<script type="text/javascript"> … more

  • AJAX in South Africa

    My parents are currently on a business trip in South Africa, and they saw this AJAX writing: more

  • HTTP Limits Connections Per Server

    "Clients that use persistent connections SHOULD limit the number of    simultaneous connections that they maintain to a given server. A    single-user client SHOULD NOT maintain … more

  • Ajax.NET Date Picker Control

    AJAX Date Picker is a free ASP.NET 2.0 calendar control that utilizes AJAX techniques to get data from the server without an entire page postback. You can specify the clickable dates on a given month … more

  • Sample chat app using .NET 2.0

    You can download the changed chat demo application at the Ajax.NET Professional Google group. This is using an internal version of the library that will not have the memory bug. more

  • Chat today about Ajax.NET Professional

    I got some requests on having chat sessions from time to time. Because we didn't searched for a good chat application we are using http://treehouse.ofb.net/chat/?lang=en for a first chat test today: … more

  • RSA for JavaScript

    I found a nice implementation for RSA on JavaScript maybe used in a ICryptProvider for Ajax.NET Professional to secure the data is sent from the client-side JavaScript to the server and back. For … more

  • Ajax.NET/Atlas Client Debugging

    I read the blog from Rob Chartier and want to show you a feature that is available in Ajax.NET and Atlas. Both libraries are adding debug methods to the client-side JavaScript code. Ajax.NET … more

  • Ajax.NET and System.Web.Caching.Cache

    Today I found an article about caching using Ajax.NET. In the article the author said that the Cache object is not working with Ajax.NET. I have done a small example to show how to use the Cache … more

  • Inline code usage and Ajax.NET

    I got some requests on how to use inline code with Ajax.NET. Here is a small demo that will get the server time: <%@ Page language="c#" Inherits="System.Web.UI.Page" ClassName="WebForm6"%> & … more

  • Initial AJAX JavaScript objects

    In some scenarios you will call an AJAX method direct after the window.onload event. The window.onload event will start an asyncronous method and wait for the response. As you can imagine the call … more