What is Image cropping? Image cropping refer to removal of some part of image Uses to improve framing and size Applied in photograph to resize image Application overview In this project, I will show image cropping of an employee phot when employee information saved and modified. Full crud operation applied in the application with image
Category: Javascript (All)
Retrieving a collection of objects with page methods and AngularJS in ASP.NET Web form
Page Methods are asp.net web form feature. It is an easy way to communicate with the server. You can communicate with server using Page Methods and can do anything you like but mind it is not restful form of communication. In this solution I used visual studio 2012 and bootstrap. So let’s start to retrieve
Introduction to AngularJs and Bootstrap in ASP.NET Web form
Revolution just arrived. Client side development is getting easier and cheaper. AngularJs is one of the client side development JavaScript framework. It is developed by google. Website designing also get easier due to emerge of bootstrap. Now let’s introduce AngularJS and Bootstrap in a asp.net web form application. Here I used visual studio 2012 as
Simple notifications with toastr
toastr is a simple JavaScript toast notification library that is small, easy to use, and extendable. It is mostly used to show notification and its outlook is very nice and responsive. It allows you to create simple toasts with HTML5 and JavaScript like following: Let’s use toastr in a simple asp.net MVC application. Step 1:
A SignalR Application for real time notification using AngularJS and toastr
SignalR is a new developer’s API provided for ASP.NET web applications, used to add “real time” web functionality to ASP.NET applications. “Real Time” web functionality is the ability to have server code to push contents to connected clients. Uses 1. Notification 2. Chat application 3. Real time monitoring application 4. Job progress update etc. So,
Determine whether Caps Lock is ON in ASP.net Page by JavaScript
Here I used a simple Textbox in ASP.net page and used Javascript to determine whether Caps Lock is on or off. I have used the following Javascript code in between head tag. function isCapslock(e) { e = (e) ? e : window.event; var charCode = false; if (e.which) { charCode = e.which; } else if
JavaScript (All Articles) at a glance
JavaScript Decorator Design Pattern with C# Object Oriented Design Principles with C# – Part – 1 JQuery Decorator Design Pattern with C# Object Oriented Design Principles with C# – Part – 1 AngularJs Decorator Design Pattern with C# Object Oriented Design Principles with C# – Part – 1