Redirect a Login By Role in C# ASP .NET
Redirecting a user after login to a C# ASP .NET web application is a common feature found in most web applications. It’s also quite common to have multiple types of users logging into the ASP .NET web
Redirecting a user after login to a C# ASP .NET web application is a common feature found in most web applications. It’s also quite common to have multiple types of users logging into the ASP .NET web
Sooner or later many web sites realize they need to allow users to login to their C# ASP .NET web applications. This can be as a result of web application functionality, feature restrictions, or simpl
With the latest release of C# ASP .NET 3.5, Visual Studio 2008, and LINQ, there is a whole new way of working with the data layer in C# ASP .NET web applications. Prior to LINQ, many developers would
The State Pattern is an interesting design pattern in that it allows us to separate out portions of code into individual related modules, or states. This pattern is particularly useful for application
C# ASP .NET has a setting in the web.config file which allows selecting the desired session timeout. When the session timeout value expires, the currently logged in user’s session is deleted and the u
The Iterator design pattern provides us with a common method of enumerating a list of items or array, while hiding the details of the list’s implementation. This provides a cleaner use of the array ob
The strategy design pattern is a useful pattern for pulling out frequently changing pieces of code and encapsulating them within individual classes. The strategy pattern allows us to reference these n
With the release of Visual Studio 2008, Microsoft is working on including an add-on for C# ASP .NET web application developers to include the Model view Controller (MVC) design pattern within their so
Designing a C# ASP .NET web application which utilizes a database is a common and straight-forward task for developers. The web application accesses various tables, stored procedures, executes SQL scr
The Memento design pattern is a useful pattern in C# ASP .NET for saving the state of an object for retrieval at a later time. A common example of the Memento pattern would be the Undo command of vari