Attention: We are retiring the ASP.NET Community Blogs. Learn more >

A tip for debugging with Atlas

This code shows you what you can call on your serialized object when using Atlas:
for(m in myObject){  //in my case, I was using result.getItem(i)
    alert(m);
}

Thanks to Wilco Bauwer for showing it to me in the asp.net forums.

3 Comments

Comments have been disabled for this content.