Tag Archives: C#

Updating App Tile using Background Agent in Windows Phone 8 App

Background Agents and Scheduled Tasks allows your application to execute to code in the background even when the application is not running in the foreground. This is quite useful in various type of scenarios where you want to update the Live Tile frequently, show a toast notification on getting some data from web service, perform… Read More »

Calling ASP.Net WebAPI using HttpClient

In this post, we are going to learn how to call an ASP.Net WebAPI using HttpClient libraries. The HttpClient Library is quite useful and can be used while calling your WebAPI from Windows applications, Console Applications or even Windows 8 applications. We will use the same WebAPI which we created in my previous post “Using… Read More »

Store Images in SQL Server

In the following Post, we will look at how to save images in SQL server.  We will then read the image from the Sql Server and will render it on our page using a Http Handler. First we will create a Database in Sql Server called ImageDB . Below are the table and stored procedure… Read More »