Sign In
Craig McMurtry's WebLog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
64-Bit
Goldfrapp
Identity Management
Microsoft Foundation Classes
Microsoft Foundation Classes (MFC)
MSDN Canada Deep Dives
Sociology
Windows Communication Foundation Hands-on!
Windows Phone
Archive
Archives
December 2011
(2)
October 2011
(1)
August 2011
(1)
July 2011
(1)
May 2011
(1)
March 2011
(1)
January 2011
(8)
December 2010
(1)
February 2010
(1)
October 2009
(1)
October 2008
(8)
September 2008
(7)
May 2008
(1)
March 2008
(2)
January 2008
(2)
December 2007
(3)
November 2007
(1)
October 2007
(1)
November 2006
(3)
September 2006
(2)
July 2006
(13)
June 2006
(5)
May 2006
(1)
March 2006
(4)
February 2006
(1)
January 2006
(1)
September 2005
(3)
August 2005
(3)
July 2005
(3)
April 2005
(3)
March 2005
(10)
February 2005
(1)
January 2005
(1)
December 2004
(1)
November 2004
(19)
July 2004
(6)
March 2004
(28)
February 2004
(8)
March, 2005
MSDN Blogs
>
Craig McMurtry's WebLog
>
March, 2005
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Craig McMurtry's WebLog
ASP.NET 2.0 #10: Top Five Reasons to Adore ASP.NET 2.0
Posted
over 7 years ago
by
Craig McMurtry
1
Comments
First, ASP.NET’s themes and master pages facilities make it possible for to build Web applications in which the appearance of the pages is thoroughly abstracted away from the operation of the pages in a way that was not possible before. Second, the Web...
Craig McMurtry's WebLog
ASP.NET 2.0 #9: SQLCacheDependency
Posted
over 7 years ago
by
Craig McMurtry
0
Comments
Here is the code for a user control that displays a report: the control only goes through the process of loading the report from disk and retrieving its data if the report that is to be displayed is not already in the ASP.NET cache, otherwise, it merely...
Craig McMurtry's WebLog
ASP.NET 2.0 #8: WebPart Page Sample
Posted
over 7 years ago
by
Craig McMurtry
5
Comments
<%@ Page Language="C#" MasterPageFile="~/Masters/Interior.master" CompileWith="Dashboard.aspx.cs" ClassName="Dashboard_aspx" Title="Business Intelligence Dashboard" %> <%@ Register tagprefix="ctl" TagName="ReportControl" Src="../CustomControls...
Craig McMurtry's WebLog
ASP.NET 2.0 #7: Data Access
Posted
over 7 years ago
by
Craig McMurtry
1
Comments
Given the monumental success of Dan Brown’s novel, The Da Vinci Code , I must assume that many of you have read it. For the handful of you who haven’t read it yet, it is a reinterpretation of Western history and sexuality, as well as a theory of the true...
Craig McMurtry's WebLog
ASP.NET 2.0 #6: Personalization
Posted
over 7 years ago
by
Craig McMurtry
0
Comments
Here's the code by which one authorized user can access another's personalization data: branch = Profile.GetProfile(userName).Branch; <Yawn/> That's well documented. But here is the code by which the authorized user can MODIFY another's personalization...
Craig McMurtry's WebLog
ASP.NET 2.0 #5: Security II: Windows Server 2003 Authorization Manager Role Provider
Posted
over 7 years ago
by
Craig McMurtry
1
Comments
Here's my custom Windows Server 2003 Authorization Manager Role Provider: using System; using System.Collections; using System.Configuration; using System.Web; using System.Web.Security; using AZROLESLib; public class AuthorizationManagerRoleProvider...
Craig McMurtry's WebLog
ASP.NET 2.0 #4: Security I: AD/AM Membership Provider
Posted
over 7 years ago
by
Craig McMurtry
5
Comments
Here is my repaired version of Jit Ghosh's AD/AM Membership Provider: using System; using System.Configuration; using System.Web.Configuration; using System.Configuration.Provider; using System.Web.Security; using System.DirectoryServices; using System...
Craig McMurtry's WebLog
ASP.NET 2.0 #3: Navigation
Posted
over 7 years ago
by
Craig McMurtry
1
Comments
Let's say that you have to, as I did once, develop a menu like the one illustrated here: As users make selections from the menu, sub-menu items are revealed, while the selections that the user has already made are tracked at the top of the menu. Besides...
Craig McMurtry's WebLog
ASP.NET 2.0 #2: Master Pages
Posted
over 7 years ago
by
Craig McMurtry
3
Comments
A realistic starting point for the coding on many Web projects is static mock-ups provided by a graphics designer. What happens next? One thing that might happen is that the project leader divides up the static mock-ups among the developers, along with...
Craig McMurtry's WebLog
ASP.NET 2.0 #1: Themes and Skins Sample
Posted
over 7 years ago
by
Craig McMurtry
3
Comments
The skin of a graphical user interface is the element that determines how that interface looks, or, conversely, a graphical user interface has a skin to the extent that its appearance can be controlled by manipulating a single element. The customary way...
Page 1 of 1 (10 items)