ID |
Uploaded |
Status |
Description |
Work Items |
Action |
11556
by JeffTian
|
Feb 22
3:33 AM
|
Being evaluated
|
The fix for bug “Cannot delete subscribers” in BlogEngine.NET
The relative code file is ~\BlogEngine.NET\widgets\Newsletter\edit.ascx.cs.
The revised code file added 2 event handlers (Onunload(), OnLoad()) and modified 1 event handler (SaveEmails()). It uses the Session variable to store the modified doc (has some email addresses deleted).
// This event handler is append to the orignal file protected override void OnLoad(EventArgs e) { if (IsPostBack) { if (Session["docEmailList"] != null) { doc = (XmlDocument)Session["docEmailList"]; } } base.OnLoad(e); } // This event handler is append to the orignal file protected override void OnUnload(EventArgs e) { Session["docEmailList"] = doc; base.OnUnload(e); } /// /// Saves the emails. /// /// This event handler has already in the original file. I just append a statement (Session.Remove()) to it. private void SaveEmails() { using (var ms = new MemoryStream()) using (var fs = File.Open(fileName, FileMode.Create, FileAccess.Write)) { doc.Save(ms); ms.WriteTo(fs); } // I append this statement: Session.Remove("docEmailList"); }
|
11794
|
Download
|
3925
by themajor
|
Sep 19 2009
1:31 PM
|
Being evaluated
|
Validates/Ignores duplicate comments on a post.
|
|
Download
|
2669
by riaanl
|
Mar 25 2009
12:46 AM
|
Being evaluated
|
Extension for validation of comments via Askimet. Depends on http://subkismet.codeplex.com
|
|
Download
|
2658
by fabianfigueredo
|
Mar 24 2009
5:59 AM
|
Being evaluated
|
SEO Pack v0.3.6 : Optimizes your BlogEngine blog for Search Engines (SEO). (Fixed bugs)
Upgrade instalations: Delete settings file "datastore/extensions/seopack.xml" Info: http://oberdata.com.ar/blog/post/2008/06/15/SEO-Pack-for-BlogengineNET.aspx
|
|
Download
|
2537
by fabianfigueredo
|
Mar 2 2009
6:06 AM
|
Being evaluated
|
SEO Pack v0.3.4 : Optimizes your BlogEngine blog for Search Engines (SEO). (Fixed bugs)
Upgrade instalations: Delete settings file "datastore/extensions/seopack.xml" Info: http://oberdata.com.ar/blog/post/2008/06/15/SEO-Pack-for-BlogengineNET.aspx
|
|
Download
|
2509
by tomasmatejka
|
Feb 23 2009
5:51 PM
|
Being evaluated
|
With this custom control for BlogEngine.NET you can show NASA image of the day!
|
|
Download
|
2502
by fabianfigueredo
|
Feb 21 2009
5:39 AM
|
Being evaluated
|
SEO Pack v0.3.3 : Optimizes your BlogEngine blog for Search Engines (SEO). (Fixed bugs)
Info: http://oberdata.com.ar/blog/post/2008/06/15/SEO-Pack-for-BlogengineNET.aspx
|
|
Download
|
2391
by wwwlicious
|
Jan 24 2009
11:41 AM
|
Being evaluated
|
jQuery Google Analytics Extension. Track page views and link clicks for external, mailto and file download links on your blog.
Full details at http://wwwlicious.com/post/BlogEngineNET-jQuery-Google-Analytics-Extension.aspx
|
|
Download
|
2390
by wwwlicious
|
Jan 24 2009
12:15 AM
|
Being evaluated
|
Added empty key check to SnapShots extension to stop script being registered if no key has been entered.
|
|
Download
|
2371
by davidee
|
Jan 18 2009
10:13 AM
|
Being evaluated
|
TranslatePost Extension - FiXED little problem with Settings. - Automatic Post Translation for DotNetBlogEngine by using Google Translation Services.
|
|
Download
|