Posts

Showing posts from October 25, 2013

Getting Started with ASP.NET MVC, SignalR KnockoutJS

Image
This article describes a simple application intended to notify users when a new user is created. To build the same we are using the technologies like ASP.NET MVC 4, SignalR, KnockoutJS, ToastR, Twitter BootStrap. First lets create a ASP.NET MVC 4 Web Application. Lets add the SignalR, KnockoutJS, ToastR, Twitter BootStrap by using the Package Manager Console into the project. install-package knockoutjs install-package Microsoft.AspNet.SignalR install-package Twitter.Bootstrap install-package Toastr We added a new page "CreateUser.shtml" and the code looks like as shown below < h2>User Creation < script src="../../Scripts/jquery-1.9.1.js" type="text/javascript">     < script src="../../Scripts/knockout-2.3.0.js" type="text/javascript"> < script src="../../Scripts/bootstrap.js" type="text/javascript"> < div class="container-fluid">     First Name: < input typ