Skip to main content

Posts

Showing posts from September, 2015

Building your first ASP.NET application

Start Visual Studio and click file and then click new website. Visual Studio creates a number of files and folders for you. You will be able to see following files and folders in your solution explorer. Default.aspx Default.aspx.cs  Web.config Image folder  App_code folder  App_data folder Default.aspx This page consist of the html tags and asp tags. Visual studio designer adds the necessary html tags and asp tags as you design your web page. Page derivative Language  AutoEventWireUp CodeFile Inherits Inherit Default.aspx.cs This is the code behind file that has the c# coding that adds the logic required to build the page. Web config file App_code folder - can be used to store your entity classes App_data folder - can be used to store database or data files used in your application Image folder

.NET Framework

.NET Framework .NET Framework is a framework that consist of following two major parts: .NET Framework class library Common Language Runtime (CLR) that include CTS - Common Type System .NET Framework class library Common Language Runtime (CLR) that include CTS - Common Type System IL stored in an Assembly