Welcome to AspAdvice Sign in | Join | Help

September 2006 - Posts

ComponentArt Atlas Controls

ComponentArt just released a version of their Web.UI suite, which is built for ASP.NET AJAX (aka “Atlas”). Web.UI 2006.2 for ASP.NET AJAX is “the most advanced AJAX framework available. ComponentArt Web.UI for ASP.NET AJAX is the first
Posted by ssmith | (Comments Off)
Filed under: ,

Atlas Contest Winners Announced

Microsoft’s Mash It Up With Atlas contest has ended , and the grand prize winner was DotNetSlackers and Alessandro Gallo (aka Garbin). Congratulations! See all the winners here : http://atlas.asp.net/default.aspx?tabid=47&subtabid=475 Share
Posted by ssmith | (Comments Off)
Filed under: ,

Your Computer On Your Thumb Drive

Something I’ve wanted for a while now is the ability to keep my computer, or at least my email and some other critical files, on a USB drive — the ultimate in “ultra-portable” — which I could then use from any computer. I’ve
Posted by ssmith | 4 Comments

Source Control Structure

How do you like to set up your source control for a project? My personal preference is sort of a work in progress, and I do not have a great deal of experience with branching and versioning, so my design doesn’t take this into account, but I would
Posted by ssmith | 4 Comments
Filed under: , ,

Conditional Attribute and TRACE in ASP.NET 2.0

In ASP.NET 1.x I had created some helper classes that wrapped the ASP.NET Trace class. These included methods like this one: [Conditional("TRACE")] public static void Write(string category, string message, Exception myException) { context = HttpContext.Current;
Posted by ssmith | 2 Comments

Strange Issue with HttpContext.Current with WebDevServer

I’m working with a Trace class that I wrote back in .NET 1.1 that wraps System.Diagnostics and System.Web tracing. The class looks like this: public static class Trace { private static HttpContext context = null ; static Trace() { context = HttpContext.Current;
Posted by ssmith | 2 Comments
Filed under: ,

Temporary Post Used For Style Detection (e3d843b1-a1dd-4d7f-849e-13d424d94655)

This is a temporary post that was not deleted. Please delete this manually. (f57df40f-2ff7-4942-9d90-d7bd327f8b2a) Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
Posted by ssmith | (Comments Off)

Ultimate ASP.NET Base Page Class

I'm working on a base page for a new application and it seems like this is about the 5th or 6th time I'm building one of these things, so it's getting a bit repetitive. In this case, it's for an ASP.NET 2.0 app, but I have base pages in
Posted by ssmith | 11 Comments
Filed under:

Microsoft Shrugs Off Atlas Name

Scott Guthrie today announced that the "Atlas" code name for the ASP.NET team's rich client framework and set of server controls and JavaScript extensions will be retired and replaced with not one, but three separate names: As part of releasing
Posted by ssmith | 3 Comments
Filed under: ,

Windows Principles Editorial

An editorial piece of mine was published in a local paper Tuesday: Microsoft opens a window to entrepreneurs Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
Posted by ssmith | (Comments Off)
Filed under: , ,

Upgrading TFS from RC to Workgroup Edition

Today I came into work and my build/source control server, which I thought I remembered installing the RTM of TFS Workgroup Edition, was complaining that my license had expired. When this happens, the error message looks something like this: "TF30072:
Posted by ssmith | 1 Comments
Filed under: , , ,

Caching in O/R Mappers and Data Layers

Frans Bouma , creator of LLBLGen , MVP, and all around very smart guy, wrote yesterday about the ‘myth’ that caching inside an Object-Relational (O/R) mapper makes queries run faster or makes the O/R mapper more efficient . I think he’s
Posted by ssmith | 6 Comments
Filed under: , ,