Most recent blog entries
Brian got married and went on a honeymoon....
Chris Hammond By Chris Hammond on 4/25/2007 12:41 PM

When Brian Schwartz left for his Honeymoon last week I know he wasn't expecting to find this when he came back!

 

We knew Brian was getting back from his honeymoon and coming into the office today, so yesterday we purchased 600 sq/ft of reynolds wrap from Sam's Club. After that we got to work. Throughout the afternoon we spent a few minutes here and there working on the office, wrapping everything that wasn't fastened down. After our company meeting last night three of us stayed late to finish up the office. We wrapped EVERYTHING. We wrapped every book, stack of papers, spare change, the desk, bookshelf, whiteboard, a paperclip, a tie, a pair of pants, the office door and we even layed the last of the foil on the floor to cover the car ...

Comments (0) More...

Debugger Attributes
Brian Dukes By Brian Dukes on 4/12/2007 7:19 AM
When developing code for .NET, there are a number of attributes that you can define on parts of your code to make your job easier while you are debugging. These are new in .NET 2.0, and part of the System.Diagnostics namespace.
Comments (0) More...

Database Diagram doesn't work in SQL Server 2005????
Henry Kenuam By hkenuam on 4/7/2007 4:08 PM
How many times have you upgraded a 2000 database to find that the Diagramming Feature doesn't work? Worse yet, you get an error that leads you down the yellow brick road to no where....
Comments (1) More...

Engage: F3, search your DotNetNuke Text/HTML modules
Chris Hammond By Chris Hammond on 4/6/2007 5:53 PM

I've had too many clients come to me and ask how they can search through all of their Text/HTML modules on a portal to look for links that point to their development URL rather than their production URL. Instead of telling them they had to manually look at every page to find all instances of these invalid links I created a new module, available from www.engagemodules.com

Engage: F3 allows you to quickly and easily search through all Text/HTML modules installed on a site, generate a report of links found, and directly links to the edit control for each of those modules to allow you to correct the invalid links.

Above and beyond the use case where yo ...

Comments (0) More...

Some Visual Studio Tools
Brian Dukes By Brian Dukes on 3/1/2007 4:11 PM

Yesterday, version four of the Visual Studio 2005 SDK was released (as noted in this blog post, V4 VS SDK Targeting VS 2005 Released!).  While I don't plan on developing any Visual Studio add-ins or extensions, I noticed that the SDK included SandCastle, which is a tool to build documentation based on your inline XML comments.  If you're working with large or distant groups, it can help to compile some of your work into a readable API document, and SandCastle will do that for you.  You'll need to go to http://www.sandcastledocs.com/ to get an automation script or GUI, since this release doesn't include any interface.  Get it here:

Comments (0) More...

Creating a "Rated" style for the Rating control
Brian Dukes By Brian Dukes on 2/26/2007 3:44 PM

The Rating control from the AjaxControlToolkit has been of use to use as we work on some of our websites that use our Engage: Publish module.  However, we needed to make a change to the style of the container around the Rating in order to change a background image from saying "Please rate!" to "Thanks for rating."  We tried wrapping it in an UpdatePanel to get at the CssClass, but we couldn't get it to react.  Eventually, we got the following javascript to work (which needs to be declared after divRating is declared).

<div id="divRating" class="divRatingBefore">
   <ajaxToolkit:Rating ID="ajaxRating".../>
</div> ...

Comments (0) More...

Using ASP.NET AJAX UpdatePanels in DotNetNuke
Brian Dukes By Brian Dukes on 2/26/2007 1:50 PM

Since the 1.0 release of ASP.NET AJAX Extensions, we've been making use of the new functionality offered us through AJAX, both from the core extensions and through the AjaxControlToolkit.  However, we've run into a road block a number of times when we're tried to use the new UpdatePanel control to add some AJAX responsiveness into our web pages.  In short, we hadn't ever gotten it to work.

Recently, some clients were pressing us for some functionality that required UpdatePanels (or diving much deeper than we liked into JavaScript), so after another failed attempt at partial rendering, I handed the project over to a colleague to see if he might have any better luck.  Fortunately, he was able to search out the information we needed.  I had seen Jon Henning's

Comments (0) More...

SEO Test Post
Marketing Blog By Brian Schwartz on 2/9/2007 4:29:11 PM
This post is an SEO test for a marketing presentation. 
Comments (0)

Overlapping Embedded Flash Elements
Brian Dukes By Brian Dukes on 2/7/2007 11:00 AM
Sometimes, you have elements on your webpage (such as a Solpart menu or the greyed-out background of a ModalPopup) that you want to display over an embedded Flash element. And they don't. And it's frustrating.
Comments (4) More...

ASP.NET Ajax and DotNetNuke
Brian Dukes By Brian Dukes on 2/5/2007 4:50 PM
With the 1.0 release of ASP.NET AJAX, we have started integrating controls from the control toolkit into some of our DotNetNuke modules. We've come across a couple of issues with the ModalPopup control in the (admittedly still Beta) AJAX control toolkit.
Comments (2) More...