Articles Archive for November 2008
HTML, Tutorial »
Basic Elements
Starting form the Basic Elements of the HTML
Starting from the Body tag
Body Tag:–
Syntax:– <Body>….</Body>
Type:– Container Tag End Tag is necessary.
Purpose:– This tag defines the contents of the page all other tags which will add some objects to the body will be placed here the objects may be some text, image, animation etc..
Example:– <Body>Contents of my page starts from here </Body>
Attributes:– Following are the attributes of the Body Tag
1. Leftmargin
* Value:- any valid integer
* Purpose:– To tell the browser what space you have to leave from the …
ASP.NET MVC, Tutorial »
ASP.NET MVC – A Step Ahead Series: Part-II
This article is only for learning purpose and to enhance the ASP.Net MVC skills. The A Step Ahead Series containing few chapters to describe the same.
History
In Part-I we have learnt few basics of the ASP.Net MVC, including features and containing the creation of a sample application. In this entire tutorial we will continue the same application with other concepts.
Introduction
This part of tutorial expands the previously created project. Let’s remind the last tutorial in following steps:
The MVC pattern separates the components of …
Definition »
Control State, Partial Class, Iterators, Nullable – At a glance
Control State
Control State is a new feature added in Asp.net2.0 framework. Control state is very similar to View State, where value is stored in the hidden_VIEWSTATE form field, with a little difference i.e. Control State cannot be disabled. Control state is intended to be used only for storing crucial information across postbacks.
Partial Classes
Partial Classes are new feature added to the .net framework 2.0. Partial classes allow dividing up a single class into multiple class file. These …
