Contents tagged with Atlas
-
ASP.NET Podcast Show #72 - Microsoft AJAX Library Basics
http://aspnetpodcast.com/CS11/blogs/asp.net_podcast/archive/2006/09/11/620.aspx
-
Array.remove(item) Atlas enhancement
One of the interesting things that I have found in Atlas are the extensions to the standard Javascript objects. For example, there are a number of extensions to the Array() object. One of the extensions is the remove(value). I see that attempting to remove a value that doesn’t exist does NOT result in an exception. That is good. I was afraid that it would generate an error.
-
Understanding object extension(in Atlas & Ajax) by reading Atlas.js
I've been reading the Atlas.js file in an attempt to understand object extension in Atlas. Let's assume that I have an object that looks like this:
var obj = new String("Hello World");
If the Atlas.js file has a definition of :
String.prototype.trim = function(){
return this.trimRight().trimLeft();
}
Then I is an extension to the instance of a string object and I coul call it by the syntax:
obj.trim();
If the Atlas.js file has a definition of:
String.myFunction = function(value){
// blah, blah, blah
}
then I would make the following call:
String.myFunction(.....);
Its a subtle difference but important to see and know the difference. It tripped me up for a little while. -
Jacksonville on 9/6
Pics
-
ASP.NET Podcasts Shows #70 & 71
Links to the Shows:
-
UpdatePanel video on Wrox.com
I just got an email from Jim Minatel that he has posted the UpdatePanel Video that I did along with the other videos at Wrox.com.
-
Prioritizing web service calls in Atlas
I came across this little nugget of information. You can prioritize and batch web service calls using the alternative call syntax along with making some changes in the web.config and some XMLScript (aka AtlasScript).
-
Jacksonville, FL .NET User Group on Wednesday, September 6, 2006 - Atlas
I will be at the Jacksonville, FL .NET User Group on Wednesday, September 6, 2006. I will be speaking on the subject of Microsoft Atlas. I was unable to speak at their code camp this past week, however, this is part of my making it up for not being their for the code camp.
-
Microsoft Atlas Client Side Objects
As I have been working on a section on Complex Business Objects and Atlas, I ran across an interesting situation, which took me a while to figure out. I have created a server side Animal object with three properties. From a web client, I create an instance of the Animal object on the client. Unfortunately, due to a lack of intellisense, I misspelled one of the properties on the client. It was weird in that I appeared to be getting no error. Then it hit me. I was getting an error, but merely "eating" it on the client and doing nothing with it. I put in an error handler and there it was.
-
Webcast - ASP.NET Podcast Show #65 - Atlas Integration with ASP.NET Services - Login/Authentication, Roles, and Profiles
Goto: http://aspnetpodcast.com/CS11/blogs/asp.net_podcast/archive/2006/08/11/493.aspx