Twitter continues to gain in popularity, in part because it offers a rich and easy to use query API. Just for fun I made an ASP.NET Web Forms User Control to Display some recent Tweets on a web page. The tweets are displayed in a ListView as follows. Code Snippet <% @ Control Language ="C#" AutoEventWireup ="true" CodeBehind ="MyTweets.ascx.cs" Inherits ="NETOOP.Controls.MyTweets" %> <% @ OutputCache Duration ="3600" VaryByParam ="None" %> < asp : ListView ID ="MyTweetsListView" runat ="server"> < LayoutTemplate > < table class ="gridview"> < th > My Tweets </ th > < tbody > < asp : PlaceHolder ID ="itemPlaceholder"…(read more)