Sign in
Craig McMurtry's WebLog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
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
Browse by Tags
MSDN Blogs
>
Craig McMurtry's WebLog
>
All Tags
>
msdn canada deep dives
Tagged Content List
Blog Post:
ASP.NET 2.0 #10: Top Five Reasons to Adore ASP.NET 2.0
Craig McMurtry
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 Site Administration Tool makes it possible to manage...
on
4 Mar 2005
Blog Post:
ASP.NET 2.0 #9: SQLCacheDependency
Craig McMurtry
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 retrieves the report from the cache, which is much...
on
4 Mar 2005
Blog Post:
ASP.NET 2.0 #8: WebPart Page Sample
Craig McMurtry
<%@ 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/ReportDisplay.ascx"%> <asp:Content ContentPlaceHolderID...
on
4 Mar 2005
Blog Post:
ASP.NET 2.0 #7: Data Access
Craig McMurtry
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 nature and location of the Holy Grail, all thinly...
on
4 Mar 2005
Blog Post:
ASP.NET 2.0 #6: Personalization
Craig McMurtry
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 data, which is not so well documented: ASP...
on
4 Mar 2005
Blog Post:
ASP.NET 2.0 #5: Security II: Windows Server 2003 Authorization Manager Role Provider
Craig McMurtry
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: RoleProvider { private string name; private string...
on
4 Mar 2005
Blog Post:
ASP.NET 2.0 #4: Security I: AD/AM Membership Provider
Craig McMurtry
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.Security.Cryptography; using System.Text; using...
on
4 Mar 2005
Blog Post:
ASP.NET 2.0 #3: Navigation
Craig McMurtry
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 the requirements for how the menu is to behave...
on
4 Mar 2005
Blog Post:
ASP.NET 2.0 #2: Master Pages
Craig McMurtry
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 copies of the written specifications, and tells...
on
4 Mar 2005
Blog Post:
ASP.NET 2.0 #1: Themes and Skins Sample
Craig McMurtry
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 of making it possible to control the appearance...
on
4 Mar 2005
Page 1 of 1 (10 items)