ScottGu's Blog
Scott Guthrie lives in Seattle and builds a few products for Microsoft
-
Free ASP.NET 2.0 and Visual Studio 2005 Training Offer
Keith just pointed me to a free promotional training offer on ASP.NET 2.0, VS 2005 and SQL 2005. You can register to receive a 3 hour free training video on ASP.NET 2.0 (using either VB or C#) through this site.
-
Data Tutorial #2: Building our Master Page and Site Navigation Structure
June 22nd 2006 Update: We've now published a whole series of new data tutorials based on this origional post. You can read all about it here.
-
Cool ViewStateAnalyzer ASP.NET 2.0 Utility
Cristian Civera recently forwarded me a pointer to a really cool client-utility that he has built that provides support for analyzing ASP.NET content markup and view-state usage within a page. The below screenshot gives a good idea of some of the things you can do with it:
-
Building a DAL using Strongly Typed TableAdapters and DataTables in VS 2005 and ASP.NET 2.0
June 22nd 2006 Update: We've now published a whole series of new data tutorials based on this origional post. You can read all about it here.
-
Cool VS 2005 Debugging Visualizers for ASP.NET 2.0 Development
One of the cool new features in VS 2005 is a debugging extensibility feature called "Debugger Visualizers". Basically this provides a way for developers to build and use UI extensions within the VS debugger that provide richer data visualization and analysis of types and variables within a running program.
-
New ASP.NET 2.0 SQL Site Map Provider
Jeff Prosise has a written a great sample and article for the February edition of MSDN magazine that walksthrough the new SQL Server based provider he built for the ASP.NET 2.0 Site Navigation System. This enables you to store your site map structure in a database instead of using the default XML Provider that comes default. Enabling it within an ASP.NET 2.0 site is as simple as configuring the provider in your web.config file -- no code needs to change in order to take advantage of it (and you can databind any page control to it using the new SiteMapDataSource control).
-
ASP.NET 2.0 SQL Table Profile Provider Released Today
Hao and Stefan just shipped a cool new Profile Provider download on the ASP.NET Sandbox Site. It provides two new profile provider implementations (with complete source code) that you can use. One enables you to map profile properties directly to a SQL table in a database -- enabling you to perform richer queries on the back-end for your personalization data. The second implementation enables you to map profile properties to stored procedures in a database -- enabling you to perform whatever custom data logic you want to persist your user personalization data.
-
ASP.NET 2.0 Membership and Role Management Remote Admin Tool
Peter Kellner has a good article on the new ASP.NET 2.0 Membership and Roles Features, and then put together a very useful sample that demonstrates how to implement a set of admin data-pages on top of the ASP.NET 2.0 Membership and Role Management system to allow you to remotely administer your users and roles. His sample is available to download in source format -- so you can integrate it within your applications to provide a remote management experience for users/roles that works well in a hosting environment.
-
Encrypting Web.Config Values in ASP.NET 2.0
One of the cool new features in the configuration system with ASP.NET 2.0 is the ability to encrypt any of the values stored within them (note: this works with any configuration section -- including ones you build yourself). This is obviously important when storing sensitive information like connection strings -- and now enables you to avoid having to roll your own solution.
-
Cool ProfileView Control
Joshua Flanagan has recently published his latest update to a new ProfileView control he has built that enables you to view/edit ASP.NET 2.0 Profile settings within a web-page. It is a pretty cool control definitely worth checking out if you are using the new profile system.