Skip to main content

Posts

Showing posts from 2015

Learn IT And Share it Free ( MVC )

Learn IT And Share it Free ( MVC ) MVC Tutorial Series by :- Saineshwar bageri 1) Learn MVC Basics http://www.c-sharpcorner.com/UploadFile/4d9083/learn-mvc-basics/ 2) Creating Application in MVC 4 Using Razor http://www.c-sharpcorner.com/UploadFile/4d9083/creating-application-in-mvc-4-using-razor/ 3) Creating Insert Update and Delete Application In MVC 4 Using Razor http://www.c-sharpcorner.com/UploadFile/4d9083/creating-insert-update-and-delete-application-in-mvc-4-using/ 4) Creating Simple WebGrid In MVC 4 Using Simple Model And Dataset http://www.c-sharpcorner.com/UploadFile/4d9083/creating-simple-webgrid-in-mvc-4-using-simple-model-and-data/ 5) Creating Simple Cascading DropDownList In MVC 4 Using Razor http://www.c-sharpcorner.com/UploadFile/4d9083/creating-simple-cascading-dropdownlist-in-mvc-4-using-razor/ 6)Binding Dropdownlist With Database In MVC http://www.c-sharpcorner.com/UploadFile/4d9083/binding-dropdownlist-in-mvc-in-various-ways-in-mvc-with-d

Using Membership in ASP.Net MVC 4

In this article we will see how to use a Microsoft built-in Membership in ASP.Net MVC 4. To see Complete Article Visit: -  http://www.c-sharpcorner.com/UploadFile/4d9083/using-membership-in-Asp-Net-mvc-4/ It is best to use ready-made membership rather than creating an entirely new one for every application we create. Let's start creating a MVC application first. Creating MVC application In Visual Studio select "File" -> "New" -> "Project...". A new wizard will be shown. Inside that select Visual C# Template and inside that Web and from the list of templates select ASP.NET MVC 4 Web Application then provide name for the project “MembershipDEMO”. Then in the Project Templates select the Basic template.

Capturing Image From Web Cam in ASP.Net MVC

This article shows how to capture an image using a webcam in MVC4 and in this application we will use a jQuery webcam.js plug-in for capturing images. I have seen that most online applications currently require webcam image capturing functionality in some way or another. Most social networking sites use this kind of functionality in their application for capturing user profile pictures. To see Complete Article Visit: -  http://www.c-sharpcorner.com/UploadFile/4d9083/capturing-image-from-web-cam-in-Asp-Net-mvc139/ Agenda Create basic MVC application. Download and Adding webcam.js related reference files to project. Adding Controller ( PhotoController ). Adding Index view. Adding Action Method Capture( ). Adding Script for capturing Image. Adding Action Method and Script for binding image. Adding [HttpPost] Index Action Method. Displaying the index View in New Window. Changephoto.cshtml Code Snippet. PhotoController Code Snippet. Index.cshtml Code Snip

IList in C#

Lists and arrays implement IList. This interface is an abstraction that allows list types to be used with through a single reference type. Properties of IList Few popular property of IList interface is given below. Count:-  It will return number of object in List IsReadOnly:- This property will indicate whether the IList is read-only or not. Item:- It will return the particular Item of specified index. Example :-  For calling this class method in void Main. Final Output :-