Recent Posts

0
Comments

Building Layered Web Applications with Microsoft ASP.NET 2.0 by scott@elbandit.co.uk

Building Layered Web Applications with Microsoft ASP.NET 2.0 An excellent introduction for beginners showing the fundamentals involved in architecting an application using the Custom Business Entities approach. Written by Wrox author, Imar Spaanjaars...
0
Comments

ASP.net Books by scott@elbandit.co.uk

Building a Web 2.0 Portal with ASP.NET 3.5 by O AL Zabir This book will teach you how to build an ASP.net Ajax enabled portal, you can view it here: http://www.dropthings.com/ .
Filed under:
0
Comments

Sample Enterprise ASP.net Applications by scott@elbandit.co.uk

Some open source enterprise applications that I have found useful: Microsoft .NET Pet Shop 4 - The .NET Pet Shop application is designed to show the best practices for building enterprise, n-tier .NET 2.0 applications that may need to support a variety...
1
Comments

Avoiding using Try & Catch when setting drop down list selected value by scott@elbandit.co.uk

A better way to avoid errors when setting the selected item of a drop down list which avoids using a Try and Catch statment is to change: Try Me .ddlCountry.Items.FindByValue(Profile.Customer.CountryID).Selected = True Catch ex As Exception ' Select the...
1
Comments

Storing the UserID instead of the UserName in the User.Identity.Name Object when using the Login Control and MemberShip API by scott@elbandit.co.uk

The problem I had wiith using the Membership API and the login Control was that by default after logging in the User.Identity.Name is set to the username that users logon with, and this is usually a string value i.e. their email address or username. I...
More Posts