Michael's Blog
ASP.NET and Embedded Development
-
Opera Technology Preview 9 and XMLHttpRequest http headers
Update: I get one request for the favicon.ico on every XMLHttpRequest request, that is strange, too. If you are using the XMLHttpRequest object you have to be careful for the .setRequestHeader method. … more
-
Chat about AJAX and Ajax.NET Professional tomorrow
The next chat will be on Thursday, 3 November at 20:00 UTC. I will use the same AJAX chat at http://treehouse.ofb.net/chat/?lang=en. If you have problems calculating the correct time to your time … more
-
this.method() and base.method() in JavaScript
I looked around for the problem when you want to inherit from a JavaScript "class" with overriding a method, but I didn't find any solution. Today I tried this, which is working, but not very nice … more
-
Ajax.NET Professional 5.11.2.1 examples online
I put the new examples for the Microsoft .NET Framework 1.1 and 2.0 online: Version 1.1: http://www.schwarz-interactive.de Version 2.0: http://dotnet2.schwarz-interactive.de You can download both … more
-
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