Tag Archives: AJAX

JavaScript for C# Developers – Key concepts of C# and JavaScript Syntax

This is an excerpt of a webinar by Dan Wahlin – JavaScript for C# Developers that was conducted at Interface Technical Training on September 14, 2014. You can watch the entire webinar at JavaScript for C# Developers webinar Dan Wahlin teaches Web Development and .NET Visual Studio classes at Interface Technical Dan’s instructor-led training includes … Continue reading JavaScript for C# Developers – Key concepts of C# and JavaScript Syntax

Using jQuery Deferred Objects and Promises Instead of Callbacks

In a previous post jQuery Tip #7 – Consolidating jQuery Ajax Calls I talked about how Ajax calls can be consolidated into a JavaScript object to promote re-use and simplify maintenance. In that post I showed how the Revealing Module Pattern can be used to provide a more structured approach and how a callback can be … Continue reading Using jQuery Deferred Objects and Promises Instead of Callbacks

Using Handlebars Templates to Render HTML on the Client

As more and more functionality moves to the client it's important to convert JSON data into HTML using techniques that make maintenance easy down the road. Fortunately, there are several different template frameworks out there that can be used to generate HTML without having to write a ton of JavaScript. One of my personal favorites … Continue reading Using Handlebars Templates to Render HTML on the Client

Learn to build an End to End Application with EF Code First, ASP.NET MVC 4, jQuery, and HTML5 with Dan Wahlin at Interface Technical Training

It’s hard to keep up with all of the new technologies being released. The moment you think you understand a given technology a new one comes out and in some cases replaces the technology you just learned. Some people enjoy the challenge of keeping up with technology while others resist change and end up stuck … Continue reading Learn to build an End to End Application with EF Code First, ASP.NET MVC 4, jQuery, and HTML5 with Dan Wahlin at Interface Technical Training

Getting Data in and out of ASP.NET Applications using Ajax and jQuery – Using a Custom HttpHandler by Dan Wahlin

In my previous post I discussed how ASP.NET MVC controllers could be used to serve up JSON data to applications. Examples of additional technologies that can be used are shown next: 1. ASP.NET Web Services (.asmx) 2. Windows Communication Foundation 3. ASP.NET MVC Controller/Action 4. Custom HttpHandler 5. Web API With ASP.NET MVC you can … Continue reading Getting Data in and out of ASP.NET Applications using Ajax and jQuery – Using a Custom HttpHandler by Dan Wahlin

Getting Data in and out of ASP.NET Applications using Ajax and jQuery – Using WCF – Part 2 by Dan Wahlin

In my previous post I discussed how to use ASP.NET Web Services to serve up JSON data to applications. As a quick review, there are several different techniques that can be used including the following: 1. ASP.NET Web Services (.asmx) 2. Windows Communication Foundation 3. ASP.NET MVC Controller/Action 4. Custom HttpHandler 5. Web API With … Continue reading Getting Data in and out of ASP.NET Applications using Ajax and jQuery – Using WCF – Part 2 by Dan Wahlin

Getting Data in and out of ASP.NET Applications using Ajax and jQuery – Part I by Dan Wahlin

Web applications have changed a lot over the years. When they first started in the 90's nearly every action a user performed on a page caused the page to fully reload. Full page postback operations were the norm and something that everyone expected. As the Web matured developers were given additional tools to exchange data … Continue reading Getting Data in and out of ASP.NET Applications using Ajax and jQuery – Part I by Dan Wahlin

How to create an ASP.NET AJAX Toolkit Extender Control to Extend a GridView

In a previous post I showed examples of how CSS and JavaScript code could be used to freeze the header row of a GridView control and add scrolling capabilities for Internet Explorer and Firefox. Here’s an example of a GridView with a frozen header: In this post I’m going to discuss how to package up … Continue reading How to create an ASP.NET AJAX Toolkit Extender Control to Extend a GridView