Wise Owl's Blog
Making Sense of Software

Excel | Microsoft training in London, UK

ASP.NET blogs

Createing master pages, CSS, skins and themes

Posted by Andy Brown on 01 May 2012 | no comments
How to create the perfect ASP.NET website, including using master pages, CSS style sheets, and whether to use skins and themes or not.

This blog is part of a larger online tutorial in ASP.NET.

Tags:   ASP.NET / Master pages   |   ASP.NET / Themes, skins, CSS   |   ASP.NET / General

Tutorial - creating the perfect ASP.NET website

Posted by Andy Brown on 24 April 2012 | no comments
This free online tutorial shows how to create the perfect website using ASP.NET using Visual Basic or Visual C#, user controls, styles, master pages, gridviews, data classes and stored procedures.

Using ClientIdMode to name web server controls

Posted by Andy Brown on 10 October 2011 | no comments
ASP.NET is great at server-side processing, but how can you refer to ASP.NET web server controls at the client? The answer is to use the new(ish) ClientIdMode property to fix the controls' names.

Overview of Data Controls in ASP.NET 4.0

Posted by Andy Brown on 19 September 2011 | no comments
With the introduction of the ListView data control in ASP.NET 3.5, there are now 4 separate tools for displaying multiple rows of data in ASP.NET. Which one is best - GridView, Repeater, DataList or ListView?
Tags:   Visual Studio / ASP.NET   |   ASP.NET / ADO.NET and data   |   ASP.NET / Gridviews

Review of VB.NET Data Storage Structures

Posted by Andy Brown on 24 August 2011 | no comments
There are a bewildering array (excuse the pun) of data storage structures available to you in Visual Basic. Choose from arrays, ArrayLists, SortedLists, Dictionaries, HashTables, Lists and DataTables, among others. This blog gives an example of each type of structure, and benchmarks them to show which perform best and worst.

Changing Visual Studio default settings for ASP.NET

Posted by Andy Brown on 02 August 2011 | no comments
Visual Studio is a great tool for developing websites using ASP.NET - it can be made even greater by tweaking some default settings. Use this blog to change the default start-up options, assign a navigate backward key, insert attribute quote marks and open pages in HTML view by default.
Adding a first or default item to a list control which gets its data from a table can be tricky. This blog gives an elegant solution using UNION queries, which works equally well for ASP.NET dropdown controls, Windows Forms dropdowns or Access combo boxes.
Tags:   SQL / Selecting data   |   Access / Forms and subforms   |   ASP.NET / ADO.NET and data