October 2005 - Posts

0
Comments

Pre-release 5.10.31.1 by Michael Schwarz

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(methodName)], the same for the AjaxClass - IFrame support if...
2
Comments

Pre-release 5.10.28.2 by Michael Schwarz

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 the .Add data type - added HtmlControl support - added...
0
Comments

IJavaScriptConverter and class attribute by Michael Schwarz

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 to use components from third parties without changing...
5
Comments

IJavaScriptConverter are back in the next version by Michael Schwarz

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, HtmlControls (!!!!) , DateTime, all DataSet objects...
1
Comments

IHttpAsyncHandler in Ajax.NET Professional by Michael Schwarz

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. For this reason you have to implement the IContextInitializer...
0
Comments

IJavaScriptObject in the new version by Michael Schwarz

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 JavaScript code you want that does not exist as a CLR...
2
Comments

AJAX working as a TCP/IP connection by Michael Schwarz

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"> function OnReceive(data) { alert(data); } var r = new...
6
Comments

AJAX in South Africa by Michael Schwarz

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

HTTP Limits Connections Per Server by Michael Schwarz

"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 than 2 connections with any server or proxy. A proxy SHOULD use up to 2*N...
2
Comments

Ajax.NET Date Picker Control by Michael Schwarz

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 as well as other days like holidays, etc. A great application...
More Posts Next page »