Skip to main content

Posts

Showing posts from April 13, 2014

Capturing Image From Web Cam in ASP.Net

This article provides the procedure for capturing an image from a webcam and store it in folder. http://www.c-sharpcorner.com/UploadFile/4d9083/capturing-image-from-web-cam-in-Asp-Net/ Click here to read more................

What is DataList Control ?

What is DataList Control ? 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 items. Here we will show how to bind an XML file to a DataList control. The Templates are as follows: 1) ItemTemplate 2) AlternatingitemTemplate 3) HeaderTemplate 4) FooterTemplate 5) SeperatorTemplate 6) SelectedItemTemplate 7) EditItemTemplate HeaderTemplate: This template is used for elements that you want to render once before your ItemTemplate section. ItemTemplate: This template is used for elements that are rendered once per row of data. It is used to display records AlternatingItemTemplate: This template is used for elements that are rendered every second row of data. This allows you to alternate background colors. It works on even number of records on

Creating a Light box Photo Gallery in HTML and Can be Used In ASP.NET

  Click Here Download Entire Code   Click here to read more................  
Developing ASP.NET MVC 4 Web Applications for Beginners Create new project -> Select visual C# -> inside that select Web Select [ASP.NET MVC4 Web Application] Enter name as [MyfirstMvcApplication]  Click here to read more................

Learn MVC Basics

Learn MVC Basics MVC is model view controller pattern and architectural design principal. That separate components of web application. This separation gives us more control over individual part of application. It lets easily develop modify and tested.  Click here to read more................