November 2005 - Posts

7
Comments

Ajax.NET Professional Beta 5.11.24.1 available by Michael Schwarz

I posted a new version to the Google group . Attached you will find a beta version of the next version. I had to recode a lot of parts to get the queue working correct with 2 http connections. Now, if you add this assembly you have to be careful if you...
Filed under: , , ,
2
Comments

Ajax.NET Converters - Why? by Michael Schwarz

I got some questions concerning the Ajax.NET Professional converters. Here is my answer I wrote to the Google group already: 1) I will make a first example with a object called Person. The Person object has several properties like FirstName, FamilyName...
Filed under: , , , ,
2
Comments

XmlHttpRequest not working by Michael Schwarz

The last weeks I done a lot of test because of the memory leaks using .innerHTML or events (closures). When building some test pages I ran into a problem. I reached 65.000 handles for iexplore.exe. From time to time I got a dialog box asking if I want...
Filed under: , ,
0
Comments

Ajax.NET Professional and Client Callbacks by Michael Schwarz

Today I tried to use Ajax.NET Professional with Client Callbacks in ASP.NET 2.0. The problem I never used the Client Callbacks was that they are only using strings for the data that is sent between the client and the server. Ajax.NET Professional is sending...
Filed under: , , ,
0
Comments

Ajax.NET Professional Google Group by Michael Schwarz

Do you want to be the 500th member of the Ajax.NET Professional Google Group ? Today the member list counted 473 members and 267 topics since 1st October 2005. You can read the threads by email, your web browser , or any RSS reader that supports RSS v2...
Filed under: , , , ,
0
Comments

Fixed pre-release for Exception Handling by Michael Schwarz

I posted a pre-release version to the Google group, download the latest pre-release version here . 1) fixed the error object, it will now be used instead of res.value: if(res.error != null) { alert("Message = " + res.error.Message); alert("Type = " +...
9
Comments

AutoComplete AJAX Control with Ajax.NET Professional by Michael Schwarz

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 = new AjaxAutoComplete(); textBox1.ID = "hans1"; placeHolder1...
2
Comments

Using WITH(...) in JavaScript by Michael Schwarz

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 that allows you to use the With method (that will reduce...
2
Comments

AJAX problems for newbies by Michael Schwarz

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 modify data. Without a postback you will not get the...
Filed under: , , , ,
0
Comments

Ajax.NET Professional and the "missing" context by Michael Schwarz

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() { var context = document.getElementById("input1"); AjaxNamespace...
Filed under: , , ,
More Posts Next page »