|
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...
|
|
|
|
|
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...
|
|
|
Testing Web Sites in IE6 |
|
Ian Robinson
|
By Ian Robinson on
2/4/2007
|
|
|
|
As techies, we here at Engage Software were enthusiastic regarding the release of IE7, and subsequently left IE6 behind. However a large number of the population at large, including our clients, are keeping it very much alive. Not being able to install IE6 and IE7 on the same machine has been a frustration in recent days.....but MS has come up with a relatively painless solution.
|
 |
|
Comments (1)
|
More...
|
|
|
|
DNN Daily Tip: Debugging DotNetNuke Development on Windows Vista and Visual Studio 2005 |
|
Chris Hammond
|
By Chris Hammond on
1/5/2007 9:51 AM
|
|
|
|
Last week I got started on getting the DotNetNuke Wiki module into a 4.4.0 source solution, so that I could convert the module to ASP.NET 2.0 and debug it in Visual Studio. Normally this wouldn't be anything out of the ordinary, I setup DotNetNuke solutions for a living, I can do it in my sleep, but I decided I was going to do all of this on my main machine running Windows Vista Ultimate edition.
You would think this might not be too difficult, but it sure was. Here's what I was starting with.
DotNetNuke 4.4.0 Source package, available for download from www.dotnetnuke.com.
Visual Studio 2005 w/ SP1
IIS7 Installed
IIS6 compatibility partially installed.
After multiple failures, and quite a bit of head smashing (on the wall) I gave up for the weekend.
 |
|
Comments (0)
|
More...
|
|
|
This is how I upgrade a DotNetNuke instance. |
|
Chris Hammond
|
By Chris Hammond on
12/29/2006 9:51 AM
|
|
|
|
I see this requested all the time, so I figured I'd blog how I proceed with upgrading a DNN Instance.
If you're upgrading your DotNetNuke instance, here is a list of simple steps to follow during the upgrade process.
First tip, test the upgrade on a staging site first, pull a copy of the database and files down, try the upgrade, make sure all your functionality is still there. Then upgrade production (backup everything first)
 |
|
Comments (0)
|
More...
|
|