file upload control in asp.net

 The fileupload control  enables  you to upload file to the server. It displayed a text control and a browse button that allow users to select a file upload to the server. This control is used to upload any type of file . but we can set it only specific format of file ,  using some … Read more

datalist control in asp .net

datalist control in asp.net

Introduction: DataList control in asp.net  has RepeatDirection, RepeatColumns and RepeatLayout properties, which are unique for DataList control. These properties are useful when you need to create presentation with more than one record per row, like Image Gallery, Product Catalogue etc. For example, let say you are creating an image gallery and want to show 5 … Read more

control state in asp.net

When to avoid using control state inasp.net

Introduction of control state in Asp.net Control state in ASP.NET is a mechanism for storing and persisting the state of a control across postbacks. Control state is different from view state in that it is specific to a control, while view state is specific to a page. Control state is stored in a hidden form … Read more

lists the different template in formveiw control asp.net

formveiw control asp.net

For the FormView control to display content, you need to create templates for the different parts of the control. Most templates are optional; however, you must create a template for the mode in which the control is configured. For example, a FormView control that supports inserting records must have an insert item template defined. The … Read more

FormView Control in aap.net with example

ForThe FormView control is used to displays the values of a single record from a data source using user-defined templates.The FormView control allows you to edit, delete, and insert records. The FormView control is used to display a single record from a data source in a table. When using the FormView control, you specify templates … Read more

.net framework tutorial

.NET FRAMEWORK  is the software that is required for execution of the dot net applications on any machine. This software asks the functionalities of an operating system and makes the code do execute on its control providing the benefits. Like:

  1. Platform independency
  2. Security
  3. Automatic memory management


The code which is runs on the under the control of the framework is referred as managed code and the code which runs on the operating system (machine code) is referred as un-managed code.

click here – .net framework latest version download

DEVELOPMENT OF .NET FRAMEWORK:

The development of the dot net framework has been started in the late 90s. Originally under the name NGSW (next generation windows services).

The framework has been developed following a set up specification referred as CLI specification:

CLI specifications are open specifications that are standardizes an ISO and ECMA (European Computer Manufacturer Association).giving a chance to third party to develop the third party.

CLI Specification takes 4 major things:  

CLS (Common Language Specification)

CTS (Common Type System)

BCL (Base Class Library)

VES (Virtual execution System)

Read more

ASP.NET DataList Control

ASP.NET DataList Control

ASP.NET DataList Control  Introduction: The DataList control is, like the Repeater control, used to display a repeated list of items that are bound to the control. However, the DataList control adds a table around the data items by default. The DataList control may be bound to a database table, an XML file, or another list of … Read more

ajax tutorial

   Introduction: Ajax is shorthand for “Asynchronous JavaScript and XML”. It is a web development technique for creating interactive web application. Ajax is a latest boom in the web development world (Either we develop web application using classic ASP, or PHP, or Servlet / JSP, or ASP.NET). Ajax can be used in these all web … Read more