After my previous article, where I showed you how to use user controls as views,
in this post I will show you how to mix in some jQuery templating.
The jQuery templates plugin is basically a way to make views in JavaScript, much
like we...
In my previous post in this series I showed you how a repeater is a very clean
ASP.NET server control. It has a few problems though:
* You cannot bind to a strongly-typed object.
* If you want alternating items you have to write the markup...
My favorite control, hands down, in the ASP.NET toolbox is the Repeater. Why?
Because is it’s the cleanest of them all. The repeater does what it says,
nothing less, nothing more: it repeats. Just to show you the difference between
a simple Repeater...
In this post I will show you how you can use jQuery to call ASP.NET web services
(.asmx). Some people prefer to use page methods, but I find it nicer to group
all my AJAX-related calls in one web service. That service then serves...
In my previous post I added the extensions.js-file to my JavaScript library. I
did this because I feel there are some things that I often do and I abstracted
them out to a kind of library on top of jQuery. I will walk you...