In this small article, I will talk about toastr.js. A simple JavaScript library to create toast notifications for websites and single page applications. Continue reading
javascript
BackBone Tutorial – Part 2: Understanding the basics of Backbone Models
When we talk about any MV* pattern, model is undoubtedly the most important part of the architecture/application. Its the model that contains all the application data. Along with keeping the data the model class performs various set of actions on the data. Actions like possibility to validate the data, possibility to persist the data, defining access to various parts of data contained in the model (access control). Continue reading
A Tiny Javascript Framework for Common Validation Scenarios
This article describes some reusable JavaScript functions that can be used to create the input fields which accept some specific type of data. It also provides functions to validate the data based on whether they are required and/or to be checked against a regular expression. Continue reading
Understanding ASP.NET Validation Techniques
This article aims at understanding the basic validation techniques and controls provided by ASP.NET framework. We will try to understand which validation control should be used in any particular scenario and then make a small dummy application to illustrate the use of validation controls. Continue reading
AJAX for Beginners (Part 1) – Understanding ASP.NET AJAX Server Controls
This article talks about different methods by which developers can implement AJAX functionality in their websites. Further, this article discusses the details of ASP.NET AJAX server controls and how to use them. Continue reading