I use Feedburner for syndicating my RSS Feed. I downloaded FeedFlare to assist me with the tracking code. However, I noticed the logic used by the author does not work if you have a "/" character in your name.  My feeds look like http://feeds.feedburner.com/codewiz51/blog1, blog2, ... The original FeedFlare.cs code assumed everything after the last slash was the name.  Here are the code changes:

// Old Code
// This code will not parse http://feeds.feedburner.com/codewiz51/oldblog correctly.
// FeedBurnerUsername is parsed as oldblog, which is incorrect.
// My feeds are stored as http://feeds.feedburner.com/codewiz51/oldblog
// and http://feeds.feedburner.com/codewiz51/newblog
if (FeedBurnerUrl.EndsWith("/")) FeedBurnerUrl = FeedBurnerUrl.Remove(FeedBurnerUrl.Length - 1);
string FeedBurnerUsername = FeedBurnerUrl.Substring(FeedBurnerUrl.LastIndexOf("/") + 1);
e.Body = e.Body + string.Format(FeedBurnerScript, FeedBurnerUsername, AbsoluteUrl);

The fixed code looks for the url "http://feeds.feedburner.com/" and assumes anything after the string is part of the Feedburner name:

// New Code
// This code will parse http://feeds.feedburner.com/codewiz51/oldblog correctly.
// FeedBurnerUsername is parsed as codewiz51\oldblog, which is correct.
if (FeedBurnerUrl.EndsWith("/")) FeedBurnerUrl = FeedBurnerUrl.Remove(FeedBurnerUrl.Length - 1);
string FeedBurnerBase = "http://feeds.feedburner.com/";
string FeedBurnerUsername = FeedBurnerUrl.Substring(FeedBurnerUrl.IndexOf(FeedBurnerBase) + FeedBurnerBase.Length);
e.Body = e.Body + string.Format(FeedBurnerScript, FeedBurnerUsername, AbsoluteUrl);

Simply make changes to the Feedburner.cs file.  Then "jiggle" your Web.Config file to make the program restart.  After the recompile, you should see the correct FeedFlare url in the html.  Just select view->page source while viewing your blog.

Happy Blogging!