Sign Out of BlogEngine.Net
As much as I love BlogEngine.net, one thing annoyed me, you can't sign out, which is useful when you want to check that your post has published correctly (And because the admin menu is huge) - So I created a quick fix for it
Step 1:
Create a page called Signout.aspx in your Admin/Pages directory and add the following code to the Page_Load event
FormsAuthentication.SignOut();
Session.Abandon();
Response.Redirect("../../");
Step 2:
Add the following line to your Web.sitemap file
<siteMapNode url="~/admin/Pages/Signout.aspx" title="Log out" description="" roles="administrators, editors"/>
Done! You should now see a Logout link in your admin menu