Michael's Blog

ASP.NET and Embedded Development

  • Using WITH(...) in JavaScript

    Some days ago I had a look in some Visual Basic source code and found the WITH statement there. I was thinking about how I can use this in JavaScript code. Below you will find a very simple script … more

  • AJAX problems for newbies

    Tags: .NET, AJAX, Ajax.NET, ASP.NET, IE

    I have some items I learned about AJAX (or Ajax.NET Professional) developer newbies: You cannot access the controls or HTML elements on your web site if you are using DOM/DHTML on the client-side to … more

  • Using a Request Queue

    Tags: .NET, AJAX, Ajax.NET, ASP.NET

    I have added a simple feature that will enable queuing for Ajax.NET requests. You can enable the queue with following line:  AjaxPro.queue = new AjaxRequestQueue(); The processing of the queue … more

  • My wishlist... ;)

    This week I got two mails from different companies asking me: "Michael, what can we do for you?" Hm, not an easy question, here is my whishlist (just joking)     ;) Sony HD … more

  • Hey, VB.NET is back...!

    I created the VB.NET examples and put the new files online. You can download the latest Ajax.NET Professional library 5.11.4.2 at http://www.schwarz-interactive.de/. I added the different control … more

  • An simple AjaxButton using Ajax.NET Professional

    I have created an simple AjaxButton that will only call a method on the server-side code. There are no values sent to the server or back to the client. A new AjaxButton could serialize the form and … more

  • WebControls/ASCX and Ajax.NET Professional

    I put a new example online that will show the use of WebControls and ASCX files: Examples/Special/controls.aspx There is also a keypress demo at Examples/Special/keypress.aspx and onLoading … more