Cache Manager
Cache Manager is an ASP.NET plug-in lets the administrators to monitor and manage the ASP.NET Cache.
[Via Larkware]
Random thoughts about .Net development
Cache Manager is an ASP.NET plug-in lets the administrators to monitor and manage the ASP.NET Cache.
[Via Larkware]
This plug-in allows you to see a preview of your XML document comments - real-time, as you edit the comments in Visual Studio.CR_Documentor offers the ability to choose the level of tags you want to be "compatible" with, the manner in which "unrecognized" tags are handled, and other formatting options.CR_Documentor offers context-menu support to aid in working with XML documentation , including inserting templates, embedding selections in templates, toggling outlining on XML doc comments, and toggling visibility of the CR_Documentor window.
These code samples show you how to build VSMacros projects,add ins, and wizards to make your teams more productive and to customize Visual Studio .NET 2005 to the ways you like to work.
SWiK is a community driven resource for open source projects. Try starting a page about your favorite project, syndicating a weblog for a topic, or browsing through tags people have added to projects or
pages. SWiK contains information and news about thousands of open source software and people are constantly adding cool new stuff.
The simple trick shows how to read rss feed into DataSet .
using System;
using System.Data;
using System.Net;
namespace DevIntelligence.Examples
{
class RssReader
{
[STAThread]
static void Main(string[] args)
{
HttpWebRequest feed =
HttpWebRequest.Create("http://msdn.microsoft.com/rss.xml")
as HttpWebRequest;
DataSet data = new DataSet();
data.ReadXml( feed.GetResponse().GetResponseStream()) ;
}
}
}