Michael's Blog
ASP.NET and Embedded Development
-
AutoComplete AJAX Control with Ajax.NET Professional
I have finished a more complex auto complete textbox you can use in you Ajax.NET Professional web application. The control can be added on the server like other HtmlControls: AjaxAutoComplete textBox1 … more
-
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
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
-
Ajax.NET Professional and the "missing" context
I had done a lot of changes to the JavaScript methods. With the new version I had removed the context that you could provide to have something like a "this" context. -- Before -- function doTest1() … more
-
Using a Request Queue
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
-
More controls for Ajax.NET Professional
I get a lot of requests for new controls that are using Ajax.NET Professional. Some don't want to use other controls, they are searching for the best (or right) way to develop such controls. I have … 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