|
|
|
I wrote a previous article that touched on some of the highlights of the new features of ASP.Net 2.0. One of the features I mentioned is the new Membership API that Microsoft provided based on developer feedback. Forms authentication and the new login controls provide an easy way to provide a login form and authenticate users before allowing them access to the secured areas of your web site, but this is only half the battle. You also have to develop an administration piece that allows you to create and maintain user credentials. This type of feature is typically needed over and over again in all the web applications that you develop and the work required to do this is tedious and redundant. The Membership API provides the tools to alleviate the need to re-write the same code over and over again for each project. Let’s dive in and take a closer look.
Read More..
By Chad Bryant on Sunday, December 10, 2006 :: 1369 Views
:: 1 Comments
::
:: ASP.NET
ASP.Net was a radical change from its predecessor Active Server Pages (ASP) that represented an easy way to write dynamic pages prior to July 2000 when we saw the first introduction of Microsoft’s new .NET framework. ASP was a great tool, but it was not an enterprise tool and it required the developer to write the code to handle just about everything. ASP.Net was an incredible upgrade from a scripted non enterprise level programming tool to an object oriented enterprise level framework that made the life of web developers much easier by shielding the developer from the low level tasks of dealing with HTTP requests. With ASP.Net came a powerful toolset that provided an event driven model of development (even if it was only an illusion) and a truly powerful framework of reusable objects that made web development very similar to the rapid application development environments that existed in the Windows development world.
Read More..
Arguably one of the best new aspects of C# 2.0 is Generics. Generics gives us the best of two worlds. The one world is the ability to write generic non-type specific code that can be reused with many different types. The other world is the world of strongly typed objects.
Read More..
The purpose of this article is to demonstrate how to create a simple composite server control for ASP.Net 2.0. Just as important, or more importantly, it demonstrates the benefits of creating your own custom server controls. I will demonstrate these points by walking through a simple example scenario where the task is accomplished without the use of a custom control. We will then turn the solution into a custom server control that can be reused throughout our sites and across various other projects where such functionality would be useful.
Read More..
Previous Page | Next Page