ASP.NET Tutorial

ASP.NET Tutorial ASP.NET is an open source server- side web application framework and a web development platform that consists of full advanced features and tools used for implementing security, managing data, storing user-specific information and much more.

ASP.NET Framework is a part of.NET framework.
It is used to create a dynamic website, web application and web services.
It is a server side technology that uses all.NET compatible language such as C#, VB.NET, J# etc. which are compiled to Microsoft Intermediate Language (MSIL).
ASP.NET uses the extensible and reusable components or objects present in.Net framework.
ASP.NET uses server control to develop rapid and interactive application in an easy way.
ASP.NET is a web development platform, which provides a programming model, a comprehensive software infrastructure and various services required to create web application for PC, as well as for mobile devices.
ASP.NET is used to produce interactive, data-driven web applications over the internet. It consists of large number of controls like text boxes, buttons, and labels for assembling, configuring and manipulating code to create HTML pages.

What is ASP.NET?

ASP.NET is an open source server- side web application framework and a web development platform that consists of full advanced features and tools used for implementing security, managing data, storing user-specific information and much more. ASP.NET Framework is a part of.NET framework. It is used to create a dynamic website, web application and web services. …

What is ASP.NET? Read More »

Benefits of ASP.NET

1. ASP.NET makes development simple. 2. It is also easy to maintain with event-driven and server side programming model. 3. ASP.NET source code is executed on the server. The source code is compiled first time the page is requested. The server serves the complied version of the page for use next time the page is …

Benefits of ASP.NET Read More »

ASP.NET Component Model

ASP.NET Component Model The ASP.NET is a component and an object model that provides various building blocks to ASP.NET pages which describes: • The Server side HTML elements or tags, such as “form” and “input”. • and the Server controls, which helps in developing complex user-interface. for example the Calendar control or the Gridview control. …

ASP.NET Component Model Read More »

ASP.NET Page Life Cycle

ASP.NET Page Life Cycle Whenever a page is requested after that it is loaded into the server memory, processed and sent to the browser. Then it is unloaded from the memory.you can also write your own code to override the default code. The Page class creates a hierarchical tree of all the controls on the …

ASP.NET Page Life Cycle Read More »

ASP.net File Types

ASP.net File Types Here you will learn different types of ASP.NET File that are present in ASP.NET Applications. 1. .aspx File This file consist of ASP.NET web pages which contain the user interface and the underlying application code. Users can request directly to these pages to start the web Application. 2. .ascx File This file …

ASP.net File Types Read More »

ASP.net Web Folders

ASP.net Web Folders Every web Application starts with a single location in a form of root folder. 1. App_Browser This folder contains .browser files that ASP.NET uses to identify the browsers that are using applications and determine their capabilities. 2. App_Code This folder contains source code file that are automatically compiled to use in the …

ASP.net Web Folders Read More »

A Tour of the IDE

A Tour of the IDE Visual Studio is the integrated development environment (IDE) used for creating ASP.NET web pages. The IDE refers to all those tools which a user needs to create a complex web applications that are integrated in a single environment. Here we will study some most important screen elements. 1. The Main …

A Tour of the IDE Read More »

Understanding HTML

Understanding HTML Html is the language used for creating web pages and understood by every browser that exist today. The most important concept in the HTML standard is the idea of elements. Elements are the container that contains web page content. A typical web page is consisting of dozens of elements. HTML uses text surrounded …

Understanding HTML Read More »

HTML Elements and Tags

HTML Elements and Tags The most important concept in the HTML standard is the idea of elements. Elements are the container that contains web page content. A typical web page is consisting of dozens of elements. HTML uses text surrounded by angle brackets to indicate how your content should be displayed in the browser. The …

HTML Elements and Tags Read More »

HTML Attributes

HTML Attributes Attributes are the individual pieces of information that are attached to an element, inside the start tag. It allows you to explicitly attach a style to an element so that it can do the right formatting. Some elements require attributes. For example: the <img> element, which allows you to pull the content from …

HTML Attributes Read More »

HTML Comments

HTML Comments In order to comment something in HTML, you need to add the comment Tag. Like this :<! —This is Comment — > The code in which you use the comment will not be visible on the browser.

Rules of HTML5

Rules of HTML5 The rules of HTML5 are simple.Visual Studio helps you to show a list of errors and suggestions for how to fix them. a. Close the Elements Most elements in HTML must be closed. So when you start with a <div> tag, you must use </div> somewhere later in your page. In HTML5, …

Rules of HTML5 Read More »

Understanding CSS

Understanding CSS CSS is designed to format the web page in almost every possible way.it offers a rich set of options to change every little aspect of the web page, including fonts(size, ), color, family and so), colors and background color, borders around HTML elements, the positioning of elements in the page. CSS is now …

Understanding CSS Read More »