1) when the control is generated, the rssButton class is not added to the current attribute, leading to the failure of css modification.
BlogEngine. Web \ App_Code \ Controls \ Blogroll. cs
Code:
HtmlImage image = new HtmlImage(); image.Src = Utils.RelativeWebRoot + "pics/rssButton.gif"; image.Alt = "RSS feed for " + item.Name; image.Attributes.Add("class", "rssButton");//KKCat Debug feedAnchor.Controls.Add(image);
2) When non-xml is used as the storage medium, it does not provide good support. It is a bug.
BlogEngine.Web\admin\Pages\Blogroll.aspx.cs
// 120 rows
} else { Directory.CreateDirectory(fileName.Replace ("blogroll.xml","")); File.Create(fileName).Close(); XmlDocument doc = new XmlDocument(); doc.LoadXml("<opml xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" version=\"1.0\">" + "<body>" + "</body>" + "</opml>"); doc.Save(fileName); AddBlog(); }