Tag: Development

Community

VB 2005: How To List Known Colors

(Ged Mead) I saw a couple of unrelated questions on vbCity recently – one was about PropertyInfo and the other was in regard to Colors – and seeing them reminded me about how easy it is to use PropertyInfo to get access to and list all the 141 named Colors. There are of course other ways of doing

Community

Adding support for styles

(Bipin Joshi) In the previous lesson you learnt to develop a basic control. Your control inherited from the Control base class and emitted some HTML markup by overriding the Render() method of the base class. Though the control worked fine it lacked one important feature – support for formatting pro

Community

ASP.NET Page Life Cycle

A page in an ASP.NET application consists of several server controls. These are the fundamental building blocks of an ASP.NET application. The Life cycle of an ASP.NET page, depends on whether the page is requested for the first time or it is a postback. Postback is a process by which a page can req

Community

Deploying ASP.NET Applications

(Satheesh Babu) This article covers how to deploy ASP.NET Application in the production environment. It takes you through some of the concepts like application pool, why we need it and Configuring Application pools. At the end the author discusses some of the common problems that may arise during de