Recent Posts

SP2013: How to Use Client-Side Date Picker

If you are building a custom form in your SharePoint App, you will probably want to use a date picker control to provide a pleasant user experience, if you have any date fields. There are many JavaScript date picker controls available out there, from basic ones to more sophisticated ones with ...


Node.js: How to Create a Module

A module is basically a construct for organizing a set of related functionality, similar to a class. An important note to remember is that modules are automatically cached by your node.js application upon first load, so this means that your application will always reference the same cached obj...

MVC3: How to Make an AJAX Call and Render Partial

Let's quickly define AJAX: It stands for asynchronous JavaScript and XML and it allows your web application to send and receive data from the server asynchronously. This means that you can have the server perform some action and return the results without having to refresh the current page! T...

MVC3: Providing Shared Data to All Views

Sometimes in your MVC3 application’s _Layout.cshtml you may want to display data that is pulled from the database. Since there is no layout controller, how do you do this? Or what if you had some data that was needed to be displayed in multiple views and you don’t want to implement the same l...

Back to top