Angular 2 with Typescript configuration files

In this post we have added the configuration files which are required to setup the project to work with angular. There are three files as mentioned below: 1. package.json 2. tsconfig.json 3. systemjs.config.js package.json { "name": "hpdp-maas", "version": "1.0.0", "scripts":...

asp net mvc projects source code and video tutorials

Project List in .NET Technologies #1:Online Shopping Cart Project in ASP.NET Step By Step Source Code : Project Source Code To Purchase This Project Drop a Message on fb.com/20fingers2brains Project...

Explicit Model binding in Asp.net MVC with example

Model binding allows you to map and bind the HTTP request data with a model. Model binding implicitly goes to work when an action method has parameter. Model binding can be explicitly invoked using UpdateModel and TryUpdateModel method. In this article we will...

Model Binding in Asp.net MVC Razor with example

Model binding is an interesting feature in Asp.net MVC. It allows you to map and bind the HTTP request data with a model. The Model Binding reduces the effort to get posted values from the request. In this article we will see why we need Model binding and how we can achieve...

Enabling client side Data Annotation Validation MVC Razor

Data Annotation makes it easy to validate your model. Most of the time we implement the validation at server side, i.e. the form is posted to the server and if the model is invalid the response is sent back to the client and user is displayed with error messages. The same feature...

Remote Validation when JavaScript is disabled on browser.

In this article we are going to see what to do when JavaScript is disabled on client browser and Remote attribute does not validate the logic. To understand this article better read Remote Validation article first, we have used same UserName validation scenario in this article. Remote...

Remote Validation attribute in Asp.net MVC Razor

The article explains how to perform remote validation and mandatory settings required for remote validation. As an example we are remotely validating username property of user with database. We are considering the username scenario in this article. We are going to validate whether...

Editor Templates Example in ASP.NET MVC

We commonly use HTML helpers and model binding while working with MVC Razor. MVC framework smartly renders HTML for different type of data like textbox for string or int and checkbox for bool proeprty, when EditorFor or EditorForModel helper is used to render the control. We...

Upload multiple files to database using ASP.NET MVC

In this article we will see how to upload multiple files to database.  The main trick is to select multiple files and post it to the controller's action method. The saving code will be same, but will iterate for each file. Demo Database: We have a simple table named...

Ways to call Stored procedure using Entity Framework in ASP.NET MVC3 Razor

In this article we are concentrating on two ways by which we can call stored procedure using entity framework. Entity Framework performs below expectation when fetching large data, so often we use stored procedure to fetch data. In the application where one has used entity framework,...

HTML 5 Local Storage best practices with demo

The Local storage in HTML5 is used to store data on client side. The Local storage stores the saved data on a user's computer even after closing the browser window. We need to be careful while using Local storage, as it could slow down your site. In this article we will see how...

Database Storage in HTML5 with demo

HTML5 provides database storage to store data on client's machine using a Structured Query Language (SQL) database. It uses a temporary database to store data for a specified period of time. In order to use this feature we need to open database connection, then we can execute...