Teeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeesting.
For those curious, this is the only way I can figure to do a permanent redirect in
ASP.NET 3.5 and lower.
using System;
namespace newtelligence.DasBlog.Web
{
public partial class rss : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location", "/SyndicationService.asmx/GetRss");
}
}
}