Click here to Skip to main content

Articles by Christopher G. Lasater (Articles: 26)

Articles: 26

RSS Feed

Average article rating: 3.49

ASP.NET

Disable ASP Button on Submit and capture the PostBack OnClick Event
Posted: 9 Jun 2005   Updated: 9 Jun 2005   Views: 127,923   Rating: 3.82/5    Votes: 15   Popularity: 4.49
Licence: Not specified      Bookmarked: 50   Downloaded: 511
This article describes how to disable a ASP button on click to prevent multiple clicks and still fire the button event on the server.
Clean page redirect for setting redirect inside logical code
Posted: 27 Jun 2005   Updated: 27 Jun 2005   Views: 40,582   Rating: 2.67/5    Votes: 3   Popularity: 1.27
Licence: Not specified      Bookmarked: 16   Downloaded: 0
This article will detail how you can use the OnPreRender event to redirect a page from inside a logical set of code without getting the 'Thread was being aborted' error.

Custom Controls

ASP Server-Side JavaScript-like Calendar PopUp
Posted: 16 Jan 2006   Updated: 25 Jan 2006   Views: 120,031   Rating: 3.89/5    Votes: 12   Popularity: 4.20
Licence: The Code Project Open License (CPOL)      Bookmarked: 70   Downloaded: 171
One of those infamous ASP.NET server-side calendar controls that look and work like a JavaScript control! This is an easy plug-in for any project! I included some functions like being able to have the calendar display over other controls, and the ability to move through different months and keep the

Session State

How to Deal with those pesky Session Objects between page redirects!
Posted: 13 Jan 2006   Updated: 13 Jan 2006   Views: 32,646   Rating: 3.86/5    Votes: 6   Popularity: 3.01
Licence: Not specified      Bookmarked: 32   Downloaded: 166
This article gives a solution for cleaning up session variables that leap from one page to another in unexpected ways.

Web Security

BaseWeb ISAPI Security Module
Posted: 22 Mar 2005   Updated: 22 Mar 2005   Views: 25,533   Rating: 2.25/5    Votes: 5   Popularity: 1.57
Licence: Not specified      Bookmarked: 20   Downloaded: 563
This article details a way to perform web security much like ASP 2.0 does it, using an ISAPI Filter.

SharePoint Server

Sharepoint Solution Install with WSP Builder Made Easy
Posted: 14 Oct 2010   Updated: 19 Oct 2010   Views: 8,501   Rating: 4.67/5    Votes: 4   Popularity: 2.81
Licence: The Code Project Open License (CPOL)      Bookmarked: 5   Downloaded: 0
This article describes how to set up and build a basic wsp solution file including handy installation scripts
Sharepoint Site Install and Configuration Scripts
Posted: 14 Oct 2010   Updated: 19 Oct 2010   Views: 5,213   Rating: 4.67/5    Votes: 4   Popularity: 2.77
Licence: The Code Project Open License (CPOL)      Bookmarked: 4   Downloaded: 50
I have included some scripts my co-worker Oleg Petrychenko gave me to install Sharepoint 2007 from scratch
End to End Sharepoint Feature Deployment Project Development
Posted: 14 Oct 2010   Updated: 19 Oct 2010   Views: 6,673   Rating: 4.60/5    Votes: 3   Popularity: 2.19
Licence: The Code Project Open License (CPOL)      Bookmarked: 8   Downloaded: 150
This article describes one way to build a Sharepoint Feature project in Visual Studio that can be built and deployed using WSPBuilder, it also includes Sharepoint Server install scripts, and explicit instructions on how to build a basic feature in Sharepoint
SharePoint 2007 List Definition Feature How To
Posted: 16 Mar 2011   Updated: 13 Apr 2011   Views: 10,719   Rating: 4.67/5    Votes: 2   Popularity: 1.40
Licence: The Code Project Open License (CPOL)      Bookmarked: 7   Downloaded: 285
This is a how to article about creating a List Definition feature.

C#

A "how to" for Delegate use as a thread safe pointer
Posted: 24 Mar 2005   Updated: 24 Mar 2005   Views: 31,811   Rating: 2.08/5    Votes: 6   Popularity: 1.62
Licence: Not specified      Bookmarked: 13   Downloaded: 317
This article provides a real world usage example for using delegates.

XML

How to make your Web Reference proxy URL dynamic
Posted: 30 Nov 2005   Updated: 30 Nov 2005   Views: 194,066   Rating: 4.90/5    Votes: 27   Popularity: 7.01
Licence: Not specified      Bookmarked: 63   Downloaded: 0
This is a quick helper to allow you to make the web reference URLs for your WSDL proxies easier to configure when switching environments.

Book Chapters

Design Patterns: Command Pattern
Posted: 17 Aug 2006   Updated: 16 May 2007   Views: 78,277   Rating: 4.59/5    Votes: 22   Popularity: 6.16
Licence: Not specified      Bookmarked: 112   Downloaded: 0
Commands are useful tools when dealing with behaviors in objects. By making the request to an object, a Command object, and storing the command in an Invoker object, we can modify and keep historical records of different actions performed on an object.

Design and Architecture

Refactoring to Patterns: Factory and Strategy Patterns
Posted: 25 Mar 2005   Updated: 25 Mar 2005   Views: 41,231   Rating: 3.23/5    Votes: 16   Popularity: 3.89
Licence: Not specified      Bookmarked: 55   Downloaded: 0
This is a hands on article on how to refactor to design patterns, in specific for this article, factory and strategy design patterns.
Refactoring to Patterns: Mediator Pattern
Posted: 28 Mar 2005   Updated: 28 Mar 2005   Views: 36,530   Rating: 2.95/5    Votes: 19   Popularity: 3.77
Licence: Not specified      Bookmarked: 36   Downloaded: 0
This article details a real world example of how to use the mediator.
Refactoring to Patterns: Chain Of Responsibility Pattern
Posted: 28 Mar 2005   Updated: 28 Mar 2005   Views: 36,656   Rating: 3.43/5    Votes: 14   Popularity: 3.93
Licence: Not specified      Bookmarked: 45   Downloaded: 0
This article details a real world example of how to use a Chain of Responsibility pattern.
Refactoring To Patterns: Bridge and Adapter Pattern
Posted: 7 Apr 2005   Updated: 7 Apr 2005   Views: 41,722   Rating: 2.59/5    Votes: 14   Popularity: 2.97
Licence: Not specified      Bookmarked: 38   Downloaded: 0
The adapter and bridge patterns offer us another way to make our code more flexible, and gives us another option for code design. Developers new to OO may have already found they have used a version of one of these patterns in their code before, or can find a myriad of uses immediately.
Refactoring to Patterns: Facade Pattern
Posted: 6 Apr 2005   Updated: 12 Apr 2005   Views: 60,663   Rating: 3.03/5    Votes: 20   Popularity: 3.95
Licence: Not specified      Bookmarked: 60   Downloaded: 0
This article details a real world example of how to use facade patterns to help you deal with a modular code system, such as business layer algorithms, or any code which you wish to extract into its own assembly/namespace and allow only specific access from outside the assembly/namespace.
Refactoring to Adaptive Object Modeling: Property Pattern
Posted: 12 Apr 2005   Updated: 20 Jun 2005   Views: 42,655   Rating: 3.08/5    Votes: 7   Popularity: 2.60
Licence: Not specified      Bookmarked: 31   Downloaded: 55
This article will deal with Property methodology of Adaptive Object Modeling. Property pattern methodology maintains that the attributes of a class should be held as a collection of properties, as opposed to single instance variables, which can be changed at runtime.
Refactoring to Adaptive Object Modeling: Type-Object
Posted: 11 Apr 2005   Updated: 20 Jun 2005   Views: 34,436   Rating: 2.86/5    Votes: 12   Popularity: 3.09
Licence: Not specified      Bookmarked: 50   Downloaded: 58
Adaptive Object Modeling is a relatively new concept in object oriented design that has found some roots in advanced development processes.
Refactoring to Adaptive Object Modeling: Strategy Pattern
Posted: 11 Apr 2005   Updated: 20 Jun 2005   Views: 55,704   Rating: 3.38/5    Votes: 13   Popularity: 3.77
Licence: Not specified      Bookmarked: 36   Downloaded: 64
Strategy methodology maintains that the operations and business rules or code flow of a class should be held as a collection of properties, as opposed to single method calls, which can be changed at runtime.
Refactoring to Adaptive Object Modeling: Entity Relationships and Accountability
Posted: 3 Jun 2005   Updated: 20 Jun 2005   Views: 36,096   Rating: 3.75/5    Votes: 7   Popularity: 3.17
Licence: Not specified      Bookmarked: 45   Downloaded: 89
This article will deal with Entity Relationships as they relate to the Adaptive Object Model pattern. We will discuss and use for this example Martin Fowler's Accountability pattern, which gives us relationship formation, cardinality between classes, and is the basis for workflow in the AOM pattern.
Adaptive Object Modeling: Final Discussions and MVC
Posted: 16 May 2005   Updated: 20 Jun 2005   Views: 37,433   Rating: 3.38/5    Votes: 11   Popularity: 3.51
Licence: Not specified      Bookmarked: 45   Downloaded: 41
This article explains how client interfaces can be dealt with via the pattern. Also gives some very good reasons why an interpretive pattern methodology should be used over more static code, and attempts to explain how and why business development solutions can implement the pattern.
Refactoring to Adaptive Object Modeling: Ghost Load, Data Mapping & more........
Posted: 16 Jun 2005   Updated: 16 Jun 2005   Views: 26,738   Rating: 3.04/5    Votes: 11   Popularity: 3.17
Licence: Not specified      Bookmarked: 31   Downloaded: 59
This article will deal with several topics dealing with implementing actual data into the AOM model.
OOP Manifesto on Best Practices, Basic Rules & General Ideas
Posted: 16 Jun 2005   Updated: 16 Jun 2005   Views: 32,149   Rating: 2.67/5    Votes: 12   Popularity: 2.88
Licence: Not specified      Bookmarked: 24   Downloaded: 0
Object Oriented Programming has been around for a long while, so I know there are a thousand articles, books and various writings on the subject. My goal in writing this one is just to clarify ONE MORE TIME some very basic aspects of OOP that I think are sometimes missed or overlooked.
In a nutshell: Microsoft's Domain Specific Software Factory Examples
Posted: 6 Feb 2006   Updated: 6 Feb 2006   Views: 22,114   Rating: 2.83/5    Votes: 6   Popularity: 2.20
Licence: The Code Project Open License (CPOL)      Bookmarked: 17   Downloaded: 0
This is a short article giving a breakdown of Microsoft's Domain Specific Language examples for software factories.
Refactoring to Adaptive Object Modeling: Practical Uses
Posted: 14 Apr 2005   Updated: 20 Jun 2005   Views: 47,345   Rating: 3.90/5    Votes: 10   Popularity: 3.90
Licence: Not specified      Bookmarked: 47   Downloaded: 51
This article will deal with how to make the AOM pattern methodology useful in actual projects.
No blogs have been submitted.
No video articles have been posted.
No tips have been posted.

Christopher G. Lasater

Web Developer

United States United States

Member

Christopher G. Lasater
 
I am also a published author, please check out my book:
ISBN: 1-59822-031-4
Title: Design Patterns
Author:Christopher G. Lasater
More from my web site
Amazon.com



Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 26 May 2012
Copyright © CodeProject, 1999-2012
All Rights Reserved. Terms of Use
Layout: fixed | fluid