Entity Framework migration with example
Entity Framework migration with example This feature is introduced in EF 5 to overcome the problem of database Datainitilzers(Data was lost). We can make changes in database and able to revert back using migrations techniques. Example: Step 1. First we will create two...
read moreDrag and Drop in HTML5 with example and explanation
Drag and Drop is strong UI concept through which user can easy to copy, reorder and deletion of items and contents with the help of mouse clicks. HTML 5 came up with a Drag and Drop (DnD) API that brings native DnD support to the browser making it much easier to...
read moreServer Sent Event Using JSON and Custom messages Example
CallJson.html Default2.aspx retry:1000; data: Demo at Time event: FirstMessage data:{"Name":"Yogesh"} Download Source...
read moreHTML5 Server-Sent Events With example
Using HTML5 Server-Sent Events our web page update its contents which are sent by web server. Examples: Facebook updates, twitter , stock price updates, news feeds, cricket / election results, etc. Set "Content-Type" header to "text/event-stream" Specify that the...
read moreExample of Jquery each function on table to retrieve data
1 Ram 2 Ram1 1 Ram 2 Ram1 1 Ram 2 Ram1 1 Ram 2 Ram1 3 Ram3 4...
read moreJquery Each Example to change alternate row color
Example 1 1 Ram 2 Ram1 1 Ram 2 Ram1 1 Ram 2 Ram1 1 Ram 2 Ram1 3 Ram3 4 Ram4 Example 2: To Get Text of alternate rows 1 Ram 2 Ram1 1 Ram 2 Ram1 1 Ram 2 Ram1 1 Ram 2 Ram1 3 Ram3 4...
read moreHTML 5 Local and session storage simple example
Default1.aspx Default2.aspx Local Storage Session...
read moreServer Sent Event Example of HTML 5
Demo.html Demo.aspx retry: 1000 data: Demo...
read moreDeferred execution in LINQ
The Most of LINQ query operators do not execute immediately, their execution is deferred to a later time in the program execution. It means that the query does not execute when it is created, but when it is used or enumerated. Mean of Deferred execution is that the...
read moreImage Rotation using Java Script Simple Example
Hi In this example I demonstrate that how we can rotate set of images using simple java script code. Download Source...
read moreDownload HTML 5 Controls Examples Source Code
I have uploaded examples based on HTML 5 controls. Click to Download HTML 5 Examples...
read moreAngularJS Introduction
AngularJS is a complete open source technology and free JavaScript library identified as Angular.js file. AngularJS is an open source JavaScript library that is sponsored and maintained by Google. It's majorly developed with intension of developing Single Page...
read moreJava Script Classes and Objects
Now I am reveling concept of classes and objects into Java Script. JavaScript is a class-less language. Everything is an object. And when it comes to inheritance, objects inherit from objects, not classes from classes as in the classical languages. We can create...
read moreJavaScript String Methods Example
Download Source...
read moreJava Script String Methods Example
Download Source...
read moreAutomated Business Production And Foreseeable future View
Automated Business Production And Foreseeable future View A lot of the associations like executing their enterprises using electronic digital communities. These electronic digital online communities switch information to and fro to further improve communication. It is...
read moreLambda Expression in C#
Lambda expression is feature of C# 3.0. A lambda expression is an anonymous function.I can say that lambda expression is a method without declaration, i.e., access modifier, return value declaration, and name. It follows a syntax to create and invoke functions It's a...
read moreDelegates in C#
Using a delegate allows the programmer to encapsulate a reference to a method inside a delegate object. The delegate object can then be passed to code which can call the referenced method, without having to know at compile time which method will be invoked. Delegates...
read more