﻿<rss version="2.0" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <atom:link href="http://www.sunblognuke.com/Default.aspx?TabId=57&amp;rssid=6&amp;categoryid=21" rel="self" type="application/rss+xml" />
    <title>SunBlogNuke Team Blog - Tips &amp; Tricks</title>
    <link>http://www.sunblognuke.com/Default.aspx?TabId=57&amp;rssid=6&amp;categoryid=21</link>
    <description>Some tips and tricks about dnn module developement, including our blog module - SunBlogNuke.</description>
    <ttl>60</ttl>
    <language>en-US</language>
    <generator>SunBlogNuke RSS Generator Version 5.0.0.0</generator>
    <pubDate>Sun, 05 Feb 2012 18:45:15 GMT</pubDate>
    <lastBuildDate>Sun, 05 Feb 2012 18:45:15 GMT</lastBuildDate>
    <item>
      <title>Alternative Monthly List for DNN Blog Archives</title>
      <category domain="http://www.sunblognuke.com/blog/categoryid/25/sunblognuke.aspx">SunBlogNuke</category>
      <category domain="http://www.sunblognuke.com/blog/categoryid/21/tips-tricks.aspx">Tips &amp; Tricks</category>
      <link>http://www.sunblognuke.com/blog/entryid/443/alternative-monthly-list-dnn-blog-archives.aspx</link>
      <description><![CDATA[  <p><img style="display: block; float: none; margin-left: auto; margin-right: auto" class="shadowImg" title="Monthly Archives List for DNN Blog" alt="Monthly-Archives-List" src="http://www.sunblognuke.com/Portals/0/SunBlogNuke/6/Windows-Live-Writer/Alternative-Monthly-List-for-DNN-Blog-Ar_98B4/Monthly-Archives-List_3.png" width="550" height="250" /></p>  <p>Today our clients raised a help request in our forum as follow:</p>  <blockquote>   <p>is it possible to hide the clickable Archive Year in the Archives widget? We'd ideally just want the months listed without the parent LI displaying the year.</p> </blockquote>  <p>The request looks reasonable and indeed the monthly archives list like that style is more common in the blog platform. Now we would like to show you how to adjust it with some simple code below:</p>  <pre class="code">(<span style="color: blue">function </span>() { jQuery(<span style="color: maroon">'li.year:first'</span>).closest(<span style="color: maroon">'ul'</span>).html(jQuery(<span style="color: maroon">'li.year ul li'</span>)); })(jQuery);</pre>

<p>What you need to do is that just place it in your dnn blog page, such as skin view file or any script widget. </p>

<h3>Advanced Extension</h3>

<p>Everything looks great now but the biggest problem with this monthly archives is that the size of the list grows every single month, taking up more and more room. The drawback is  so obvious that you may have to restore the original way of <a title="Ultimate DNN Blogging Module" href="http://www.sunblognuke.com/" target="_blank">SunBlogNuke</a>  (yes, limit years with expanded monthly archives & other clickable years with hidden monthly). Event more we would like to show you that there is another alternative way of getting around this; <strong>use a drop-down list</strong>. The drop-down takes up very little space until clicked on, and is a suitable method of browsing through the months because they are all in order, making a particular date easy to find. Just perfect replacement. :)</p>

<p>The code to build awesome drop-down monthly archives list is so simple like that:</p>

<pre class="code">(<span style="color: blue">function </span>() {
    <span style="color: blue">var </span>$dropdownlist = jQuery(<span style="color: maroon">'<select id="monthlylist"><option value="">Select Month</option></select>'</span>).change(<span style="color: blue">function </span>() {
        <span style="color: blue">if </span>(jQuery(<span style="color: blue">this</span>).val() != <span style="color: maroon">''</span>) window.location = jQuery(<span style="color: blue">this</span>).val(); 
    }); ;
    jQuery(<span style="color: maroon">'.widget-archives li.year a'</span>).each(<span style="color: blue">function </span>(i) {
        $dropdownlist.append(<span style="color: blue">new </span>Option(jQuery(<span style="color: blue">this</span>).text(), jQuery(<span style="color: blue">this</span>).attr(<span style="color: maroon">'href'</span>)));
    });
    jQuery(<span style="color: maroon">'.widget-archives'</span>).closest(<span style="color: maroon">'div'</span>).append($dropdownlist);
    jQuery(<span style="color: maroon">'.widget-archives'</span>).remove();
})(jQuery);</pre>

<p>Also what you need to do is that just place it in your dnn blog page, such as skin view file or any script widget. And there you have it, a much more compact method of showing the archives.</p>

<h3>Conclusion</h3>

<p>If you’re currently showing a long list of months on your dnn blog, then try the alternative way that we listed here. You’ll notice the different immediately. It will keep your blog clutter-free and beneficial to the user with usability.</p>

<p>Blog your way and enjoy life. :)</p>

<p><em>Resources links:</em></p>

<p><a href="http://terriswallow.com/weblog/2008/15-creative-ways-to-display-blog-date-based-archives/" rel="nofollow" target="_blank">15 Creative Ways to Display Date Archives</a></p>]]></description>
      <dc:creator>Baldwin</dc:creator>
      <comments>http://www.sunblognuke.com/blog/entryid/443/alternative-monthly-list-dnn-blog-archives.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.sunblognuke.com/blog/entryid/443/alternative-monthly-list-dnn-blog-archives.aspx</guid>
      <pubDate>Tue, 29 Nov 2011 21:56:07 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.sunblognuke.com/DesktopModules/SunBlog/Views/Handlers/Trackback.ashx?id=443</trackback:ping>
    </item>
    <item>
      <title>Publish DNN Blog Posts with Office Word 2010 &amp; 2007</title>
      <category domain="http://www.sunblognuke.com/blog/categoryid/27/dotnetnuke.aspx">DotNetNuke</category>
      <category domain="http://www.sunblognuke.com/blog/categoryid/21/tips-tricks.aspx">Tips &amp; Tricks</category>
      <link>http://www.sunblognuke.com/blog/entryid/432/publish-dnn-blog-posts-office-word.aspx</link>
      <description><![CDATA[<p><img style="background-image: none; border-bottom: 0px solid; border-left: 0px solid; padding-left: 0px; padding-right: 0px; display: inline; float: left; border-top: 0px solid; margin-right: 20px; border-right: 0px solid; padding-top: 0px" title="microsoft-word" alt="microsoft-word" src="http://www.sunblognuke.com/Portals/0/SunBlogNuke/6/Windows-Live-Writer/Publish-DNN-Blog-Posts-with-Office-Word-_CED3/microsoft-word_3.png" width="235" height="240" />This post was summarized with the original forum post "<a href="http://www.sunblognuke.com/support/forums/forumid/2/threadid/1588/scope/posts.aspx" target="_blank">Post Blog Entries from Office 2010</a>".</p>  <p>As you know, our dnn blogging module – SunBlogNuke supports the remote 3rd-party publishing tool, in other words, you can use a third-party Desktop/Mobile application for your dnn blog which we call it “Remote Posting”. Microsoft Office 2010 is one of remote Posting app with just a few simple steps. It indeed makes publishing a blog post so easy that you might just be in total amazement. Please refer to the tutorial for more instruction - <a href="http://www.howtogeek.com/howto/9120/how-to-create-and-publish-blog-posts-in-word-2010-2007/">How To Create and Publish Blog Posts in Word 2010 & 2007</a>. And some following notes you should know:</p>  <p>1) Connecting SunBlogNuke with Microsoft Office 2010/2007, you need to fill in the "Blog Post Url" with the link "<a href="http://www.domain.com/DesktopModules/SunBlog/MetaWeblog.ashx"">http://www.domain.com/DesktopModules/SunBlog/MetaWeblog.ashx"</a>. Just replace "domain" with your real domain name.     <br />2) Unfortunately, Microsoft Word still doesn’t let you add things like tags, custom fields, SEO options, etc; so it is probably a good idea to choose the Publish As Draft option so that you can add those things and then publish from your blog.</p>  <p>In the end, we would like to let you know that actually we prefer to use <a title="Integrated DNN Blog Module with Window Live Writer" href="http://www.sunblognuke.com/support/docs/entryid/302/integrated-sunblognuke-with-window-live-writer.aspx" target="_blank">Window Live Writer</a> as remote publishing tool and it supplies more flexible features :)</p>]]></description>
      <dc:creator>Baldwin</dc:creator>
      <comments>http://www.sunblognuke.com/blog/entryid/432/publish-dnn-blog-posts-office-word.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.sunblognuke.com/blog/entryid/432/publish-dnn-blog-posts-office-word.aspx</guid>
      <pubDate>Wed, 02 Nov 2011 20:18:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.sunblognuke.com/DesktopModules/SunBlog/Views/Handlers/Trackback.ashx?id=432</trackback:ping>
    </item>
    <item>
      <title>Social Bookmarking for DNN Blog - SunBlogNuke</title>
      <category domain="http://www.sunblognuke.com/blog/categoryid/25/sunblognuke.aspx">SunBlogNuke</category>
      <category domain="http://www.sunblognuke.com/blog/categoryid/21/tips-tricks.aspx">Tips &amp; Tricks</category>
      <link>http://www.sunblognuke.com/blog/entryid/424/social-bookmarking-for-dnn-blog-sunblognuke.aspx</link>
      <description><![CDATA[  <p>When it comes to Blogging, traffic is the main factor and it can be gained by many strategies. Meanwhile, traffic depends on number of factors however "Social Bookmarking" is the most important and common factor. So you can get a lots of traffic by joining popular Social Bookmarking sites, such as Twitter, Facebook, Digg & Google+. The Ultimate DNN Blog Module – <a href="http://www.sunblognuke.com/">SunBlogNuke</a> supports the social bookmark feature from the beginning, with which your readers easily share your blog post on the famous social bookmark services around the world. Today we would like to show you how to active it and implemented customized "<a title="Powering the Sharing Revolution" href="http://sharethis.com" rel="nofollow" target="_blank">ShareThis</a>" bookmark widget in DNN blog. </p>  <h3>Active Social Bookmarking </h3>  <p>Configure it in the Reading Settings panel, where you checked the option or uncheck like that:</p>  <p><img class="shadowImg" title="Configure Bookmarking  for SunBlogNuke" border="0" alt="Bookmarking" src="http://www.sunblognuke.com/Portals/0/SunBlogNuke/6/Windows-Live-Writer/7e25c29899b6_6F11/Bookmarking_4ebcd542-10ae-43c7-b7df-8aa3e7c04c9a.png" width="604" height="351" /></p>  <p>As for the "ShareBox " script, just need to replace your publisher id with yours. The sample url is like this below:</p>  <p><em>http://w.sharethis.com/button/sharethis.js#publisher=xxx_id&type=website&headerTitle=Share this post</em></p>  <p>You can also customize the parameter [headertitle].  </p>  <p>You can see how it in action here  - Bookmarking Widget in the end of this post. Even more you may be interested in implemented more sexy social bookmarking plugin, please refer to another tutorial - <a href="http://www.sunblognuke.com/blog/entryid/361/integrate-sexybookmarks-into-dnn-blog.aspx">Integrate SexyBookmarks into DNN Blog</a> and you will be surprised. :)</p>  <h3>Customized Social Bookmarking Widget </h3>  <p>Here we provided the "ShareThis" bookmark widget as sample. Just follow up the steps below:</p>  <p>1)  Go to the <a href="http://sharethis.com/publishers/get-sharing-button" rel="nofollow" target="_blank">ShareThis</a> website and create the button as you want.</p>  <p>2) With HTML editor, open up the theme view file - detailview.ascx in your current theme folder. (If you are not familiar with the theme mechanism, please refer to the tutorial - <a href="http://www.sunblognuke.com/Blog/entryid/178/Develop-Your-Customized-Theme-within-DNN-Blog.aspx">Develop an Customized Theme for SunBlogNuke</a>)</p>  <p>3) Find out the original bookmarking control like this below:</p>  <pre class="code"><span style="color: blue"><</span><span style="color: #a31515">uc</span><span style="color: blue">:</span><span style="color: #a31515">Bookmarks </span><span style="color: red">ID</span><span style="color: blue">="widgetBookmarks" </span><span style="color: red">runat</span><span style="color: blue">="server" </span><span style="color: red">EnableViewState</span><span style="color: blue">="false"/></span></pre>

<p>then remove it and append your generated button code in the step 1) in the same place.  Finally it may looks like that:</p>

<pre class="code"><span style="color: blue"><</span><span style="color: #a31515">div </span><span style="color: red">class</span><span style="color: blue">="bookmarks">
    <</span><span style="color: #a31515">h3</span><span style="color: blue">></span><span style="background: #ffee62"><%</span><span style="color: blue">=</span>LocalizeByKey(<span style="color: #a31515">"ShareThisPost"</span>)<span style="background: #ffee62">%></span><span style="color: blue"></</span><span style="color: #a31515">h3</span><span style="color: blue">>
    <</span><span style="color: #a31515">span </span><span style="color: red">class</span><span style="color: blue">='st_twitter_vcount' </span><span style="color: red">displayText</span><span style="color: blue">='Tweet'></</span><span style="color: #a31515">span</span><span style="color: blue">>
    <</span><span style="color: #a31515">span </span><span style="color: red">class</span><span style="color: blue">='st_email_vcount' </span><span style="color: red">displayText</span><span style="color: blue">='Email'></</span><span style="color: #a31515">span</span><span style="color: blue">>
    <</span><span style="color: #a31515">span </span><span style="color: red">class</span><span style="color: blue">='st_facebook_vcount' </span><span style="color: red">displayText</span><span style="color: blue">='Facebook'></</span><span style="color: #a31515">span</span><span style="color: blue">>
    <</span><span style="color: #a31515">span </span><span style="color: red">class</span><span style="color: blue">='st_sharethis_vcount' </span><span style="color: red">displayText</span><span style="color: blue">='ShareThis'></</span><span style="color: #a31515">span</span><span style="color: blue">>
    <</span><span style="color: #a31515">script </span><span style="color: red">type</span><span style="color: blue">="text/javascript">var </span>switchTo5x=<span style="color: blue">true</span>;<span style="color: blue"></</span><span style="color: #a31515">script</span><span style="color: blue">>
    <</span><span style="color: #a31515">script </span><span style="color: red">type</span><span style="color: blue">="text/javascript" </span><span style="color: red">src</span><span style="color: blue">="http://w.sharethis.com/button/buttons.js"></</span><span style="color: #a31515">script</span><span style="color: blue">>
    <</span><span style="color: #a31515">script </span><span style="color: red">type</span><span style="color: blue">="text/javascript"></span>stLight.options({publisher:<span style="color: #a31515">'xxx_publiser_id'</span>});<span style="color: blue"></</span><span style="color: #a31515">script</span><span style="color: blue">>
</</span><span style="color: #a31515">div</span><span style="color: blue">></span></pre>

<p>4) Save it and it will work like a charm.</p>

<p>You can see how it in action in the every post detail of our <a href="http://www.sunblognuke.com/showcase.aspx">Showcase Gallery</a> page. </p>

<p>Hope you like this tutorial and find some helpful things in this. Feel free to ask anything about the article in comments section. </p>

<p>Blog your way and share it enjoyable. </p>]]></description>
      <dc:creator>Baldwin</dc:creator>
      <comments>http://www.sunblognuke.com/blog/entryid/424/social-bookmarking-for-dnn-blog-sunblognuke.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.sunblognuke.com/blog/entryid/424/social-bookmarking-for-dnn-blog-sunblognuke.aspx</guid>
      <pubDate>Sat, 03 Sep 2011 09:59:53 GMT</pubDate>
      <slash:comments>1</slash:comments>
      <trackback:ping>http://www.sunblognuke.com/DesktopModules/SunBlog/Views/Handlers/Trackback.ashx?id=424</trackback:ping>
    </item>
    <item>
      <title>Autopost Posterous to SunBlogNuke</title>
      <category domain="http://www.sunblognuke.com/blog/categoryid/25/sunblognuke.aspx">SunBlogNuke</category>
      <category domain="http://www.sunblognuke.com/blog/categoryid/21/tips-tricks.aspx">Tips &amp; Tricks</category>
      <link>http://www.sunblognuke.com/blog/entryid/417/autopost-posterous-to-sunblognuke.aspx</link>
      <description><![CDATA[  <p>As you know, there are lots of 3rd party services integrated with <a title="Ultimate DNN Blogging Module" href="http://www.sunblognuke.com/">SunBlogNuke</a>, such as <a href="http://www.activemodules.com/ActiveSocial.aspx" rel="nofollow" target="_blank">Active Social module</a> & <a title="Gravatar - Globally Recognized Avatars" href="http://en.gravatar.com/" rel="nofollow" target="_blank">Gravatar</a>. Here we will cover another awesome external service - <a href="http://posterous.com" rel="nofollow" target="_blank">Posterous</a>, with which you can easily build cross-post - only write your post in the Posterous and then autopost it to your SunBlogNuke source with one click. The configure process is so simple with the following steps:</p>  <ol>   <li>Make sure to active the Metaweblog service and build your blog account. Like integration with wow, if you are able to write post with window live writer, the configuration is all right for autopost. </li>    <li>Go to the dashboard of your Posterous blog. If not exist, you may need to sign up your account and build your blog there firstly. </li>    <li>Click "autopost" tab in the dashboard, like the screenshot below:      <br /><img class="shadowImg" alt="Autopost in Posterous" src="http://www.sunblognuke.com/Portals/0/SunBlogNuke/6/Windows-Live-Writer/Autopost-Posterous-to-SunBlogNuke_EDB1/Autopost-in-Posterous_bef9bd54-694b-4371-a0c7-662d2fb7d4a7.png" width="570" height="165" /> </li>    <li>Click the button "Add a service" and it will pop up a window with list of services to set it up for Autoposting. In order to integrate with <a title="Ultimate DNN Blogging Module" href="http://www.sunblognuke.com/" target="_blank">SunBlogNuke</a>, just click the link “Other Blog” to open the configure panel titled “Link Your Meta Weblog Account”. </li>    <li>Fill in your blog home url & author account information like below and Complete it with clicking the button "LINK".      <br /><img class="shadowImg" alt="Link Metaweblog in Posterous" src="http://www.sunblognuke.com/Portals/0/SunBlogNuke/6/Windows-Live-Writer/Autopost-Posterous-to-SunBlogNuke_EDB1/Link-Metaweblog_8c56d06d-3fc4-4380-9d90-ac4491292b8e.png" width="394" height="260" /> </li> </ol>  <p>Congratulations. Now you should be able to autopost your Posterous post to your dnn blog, which is built with Ultimate DNN Blog Module – SunBlogNuke. Hope it helps. Blog your way and enjoy life. :)</p>  <p>If you have more questions about  this topic or blogging,  Please feel free to post a comment below.  I’ll be happy to help.    </p>]]></description>
      <dc:creator>Baldwin</dc:creator>
      <comments>http://www.sunblognuke.com/blog/entryid/417/autopost-posterous-to-sunblognuke.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.sunblognuke.com/blog/entryid/417/autopost-posterous-to-sunblognuke.aspx</guid>
      <pubDate>Mon, 01 Aug 2011 17:02:00 GMT</pubDate>
      <slash:comments>1</slash:comments>
      <trackback:ping>http://www.sunblognuke.com/DesktopModules/SunBlog/Views/Handlers/Trackback.ashx?id=417</trackback:ping>
    </item>
    <item>
      <title>Build Canonical URLs in DNN Blog with SEO Extension</title>
      <category domain="http://www.sunblognuke.com/blog/categoryid/21/tips-tricks.aspx">Tips &amp; Tricks</category>
      <link>http://www.sunblognuke.com/blog/entryid/406/build-canonical-urls-in-dnn-blog-with-seo-extension.aspx</link>
      <description><![CDATA[<p>Google, Microsoft and Yahoo announced support for a new 'Canonical Link Element' in the header of your website page that will help clean-up duplicate url's that have been indexed by search engines. This issue is so specially serious in DotNetNuke that there are duplicated contents returned for different urls. And we ever supplied a handy solution for our blogging module – <a title="Ultimate DNN Blogging Module" href="http://www.sunblognuke.com/" target="_blank">SunBlogNuke</a> in the tutorial - <a href="http://www.sunblognuke.com/blog/entryid/392/seo-best-practices-for-dnn-blog-posts.aspx">SEO Best Practices for DNN Blog Posts</a>.</p>
<p>Today we released the new SEO extension - the alternative way to build the canonical link for your dnn blog post to avoid duplicate Urls. To apply the blog extension, it is so easy and just follow up the simple steps below:</p>
<p>1) Download it from the <a href="http://www.sunblognuke.com/extend/extensions.aspx">extensions directory</a>.     <br />
2) Unzip it and upload the extension file Canonical.cs' into the folder $ROOT/bin/Blog_Extensions. If not exist please create it at first.     <br />
3) Open up the web.config and make sure that the blog extension element there. If not exist, add the directory 'Blog_Extensions' in the element [codeSubDirectories] and it looks like as follow:</p>
<pre class="code"><span style="color: blue;"><</span><span style="color: #a31515;">codeSubDirectories</span><span style="color: blue;">>
  <</span><span style="color: #a31515;">add </span><span style="color: red;">directoryName</span><span style="color: blue;">=</span>"<span style="color: blue;">HTML</span>" <span style="color: blue;">/>
  <</span><span style="color: #a31515;">add </span><span style="color: red;">directoryName</span><span style="color: blue;">=</span>"<span style="color: blue;">Blog_Extensions</span>" <span style="color: blue;">/>
</</span><span style="color: #a31515;">codeSubDirectories</span><span style="color: blue;">></span></pre>
<p>That is all. It should work like a charm - when visiting the post detail, it will automatically add the canonical meta tags to your blog post.</p>
<p>BTW, you may be interested in the similar guidelines about other awesome blog extensions:</p>
<p><a href="http://www.sunblognuke.com/blog/entryid/405/integrated-social-graph-into-dnn-blog.aspx">Integrated Social Graph into DNN Blog</a></p>
<p><a href="http://www.sunblognuke.com/Support/Docs/entryid/393/Post-Comment-to-Journal-of-Active-Social.aspx">Post Comment to Journal of Active Social</a></p>
<p>Hope it helps. Blog your way and enjoy life. :)</p>]]></description>
      <dc:creator>Baldwin</dc:creator>
      <comments>http://www.sunblognuke.com/blog/entryid/406/build-canonical-urls-in-dnn-blog-with-seo-extension.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.sunblognuke.com/blog/entryid/406/build-canonical-urls-in-dnn-blog-with-seo-extension.aspx</guid>
      <pubDate>Sun, 03 Jul 2011 23:00:00 GMT</pubDate>
      <slash:comments>2</slash:comments>
      <trackback:ping>http://www.sunblognuke.com/DesktopModules/SunBlog/Views/Handlers/Trackback.ashx?id=406</trackback:ping>
    </item>
    <item>
      <title>Imported DNN Blog Comments into Disqus</title>
      <category domain="http://www.sunblognuke.com/blog/categoryid/28/features.aspx">Features</category>
      <category domain="http://www.sunblognuke.com/blog/categoryid/25/sunblognuke.aspx">SunBlogNuke</category>
      <category domain="http://www.sunblognuke.com/blog/categoryid/21/tips-tricks.aspx">Tips &amp; Tricks</category>
      <link>http://www.sunblognuke.com/blog/entryid/404/imported-dnn-blog-comments-into-disqus.aspx</link>
      <description><![CDATA[<p>As you know, the dnn blogging module <a title="Ultimate DNN Blogging Module" href="http://www.sunblognuke.com/" target="_blank">SunBlogNuke</a> supported Disqus out of the box but wasn't able to export the existing comments to Disqus. And our clients ever requested to move their existing blog comments over to Disqus, too. Fortunately, the v4.7 began to totally support export blog data with blogml format,  so you can use any 3rd party tools to convert the comments to WXR. Then you can import the WXR file under the Generic option in Disqus.</p>  <p>Just search term 'blogml to wxr' in Google you should get lots of similar converters. Here we recommend <a href="http://ithoughthecamewithyou.com/post/Convert-BlogML-comments-to-XWR-for-Disqus.aspx" rel="nofollow" target="_blank">this simple converter</a>, which works well with our exported file. The tool is a Windows console application that takes two parameters, the BlogML import file and the WXR output, i.e.: </p>  <p>BlogMLtoDisqus.exe C:\BlogML.xml C:\ForDisqus.wxr.</p>  <p>To export comments of SunBlogNuke to Disqus, please follow up the simple steps below:</p>  <ol>   <li>Login in your blog dashboard of SunBlogNuke with host/admin account. </li>    <li>Go to 'Import/Export Panel' and click 'export' button to download the full BlogML export from your dnn blog. </li>    <li>Provide that you have placed the console tool & the export file in the folder d:\. Go to the folder and execute it in the command window like that:      <br />      <br /><em>BlogMLtoDisqus.exe d:\BlogML.xml d:\ForDisqus.wxr        <br />        <br /></em>Note that you’ll need to install <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=9cfb2d51-5ff4-4491-b0e5-b386f32c0992&displaylang=en">.NET 4.0</a> as well if you don’t already have it. If you can’t convert it successfully, you can send us the exported blogml file and we will help you deal with it. </li>    <li>If there is no error throwing, now you should get the converted WXR file. Next just feel free to import it under the Generic option in Disqus. </li> </ol>  <p>If you have more questions about  this topic or blogging,  Please feel free to post a comment below.  I’ll be happy to help.</p>]]></description>
      <dc:creator>Baldwin</dc:creator>
      <comments>http://www.sunblognuke.com/blog/entryid/404/imported-dnn-blog-comments-into-disqus.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.sunblognuke.com/blog/entryid/404/imported-dnn-blog-comments-into-disqus.aspx</guid>
      <pubDate>Tue, 28 Jun 2011 14:48:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.sunblognuke.com/DesktopModules/SunBlog/Views/Handlers/Trackback.ashx?id=404</trackback:ping>
    </item>
    <item>
      <title>Build DNN Multiple Blogs with Multiple Authors</title>
      <category domain="http://www.sunblognuke.com/blog/categoryid/28/features.aspx">Features</category>
      <category domain="http://www.sunblognuke.com/blog/categoryid/21/tips-tricks.aspx">Tips &amp; Tricks</category>
      <link>http://www.sunblognuke.com/blog/entryid/402/build-dnn-multiple-blogs-with-multiple-authors.aspx</link>
      <description><![CDATA[<p>As more and more clients requested the tutorial how to set up multiple blogs or blogging with multiple authors in the same blog, here we list what the raised requirements are and how to work around them in the Ultimate DNN Blog Module – <a title="Ultimate DNN Blogging Module" href="http://www.sunblognuke.com/" target="_blank">SunBlogNuke</a>. Hope it helps.</p>  <h3>1) Multiple blogs </h3>  <p><strong>Question:</strong></p>  <p>"I was wondering if we can add this instance of module in 2 different pages in the same portal. The two modules should have different blogs, which means module1 on page1 shouldn't show blog contents of module2 on page 2 and vice-versa. </p>  <p>Would that be possible?"</p>  <p><strong>Solution:</strong></p>  <p>Yes, you can build multiple blog instances in different pages with different contents. Just add it and assign them in the edit blog panel with specific tab (page). Please refer to the tutorial in detail - <a href="http://www.sunblognuke.com/support/docs/entryid/401/setting-up-multiple-blogs-in-dnn-website.aspx">Setting up Multiple Blogs</a>.</p>  <h3>2) Multiple authors</h3>  <p><strong>Question:</strong></p>  <p>"We would like to use the blog module in a team environment where anyone on the team could post an entry to the same blog. The individual user should be credited as the author of the entry (rather than using a shared, generic login).</p>  <p>Ideally, the blog owner (or site admin) should be able to designate individual blogs as either "shared" (multiple contributors) or "personal" (a single author)."</p>  <p><strong>Solution: </strong></p>  <p>Fortunately SunBlogNuke offers team blogs from its initial building and it is so easy to set up multiple authors. Please refer to the tutorial in detail - <a href="http://www.sunblognuke.com/support/docs/entryid/400/dnn-blogging-with-multiple-authors.aspx">Blogging with Multiple Authors</a>.</p>]]></description>
      <dc:creator>Baldwin</dc:creator>
      <comments>http://www.sunblognuke.com/blog/entryid/402/build-dnn-multiple-blogs-with-multiple-authors.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.sunblognuke.com/blog/entryid/402/build-dnn-multiple-blogs-with-multiple-authors.aspx</guid>
      <pubDate>Thu, 16 Jun 2011 12:09:08 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.sunblognuke.com/DesktopModules/SunBlog/Views/Handlers/Trackback.ashx?id=402</trackback:ping>
    </item>
    <item>
      <title>Shortcut to Execute Blog Commands</title>
      <category domain="http://www.sunblognuke.com/blog/categoryid/25/sunblognuke.aspx">SunBlogNuke</category>
      <category domain="http://www.sunblognuke.com/blog/categoryid/21/tips-tricks.aspx">Tips &amp; Tricks</category>
      <link>http://www.sunblognuke.com/blog/entryid/396/shortcut-execute-dnn-blog-commands.aspx</link>
      <description><![CDATA[  <p>The ultimate dnn blog module – <a title="Ultimate DNN Blog Module" href="http://sunblognuke.com" target="_blank">SunBlogNuke</a> introduced the advanced feature that you are able to execute common commands in the shortcut way. With the handy feature, it is so easy to complete some common tasks without dashboard,  such as comment approval & regenerate permlinks. Just note that login your dnn website with right permission firstly, like admin account or blog owner.</p>  <h3>Comment Approval:</h3>  <p>Now content moderator will receive an email with link to access for comment approval when any pending comment posted. You can one-click this link to approve them quickly. Also, you can directly fill out the similar url in the browser address to access the feature:</p>  <ul>   <li><strong>Approve action</strong>: http://domainname.com/yourblogpage/?type=comment&cmd=approve&id=comment_id</li>    <li><strong>Reject action</strong>: http://domainname.com/yourblogpage/?type=comment&cmd=reject&id=comment_id</li> </ul>  <p>Note that you need to replace the "domainname" & "yourblogpage" with correct values; comment_id is the id of target comment what you would like to approve or reject.</p>  <h3>Regenerate Permlinks:</h3>  <p>You may need to regenerate your post permlinks when transferring your dnn blog into your productive server or applying any 3rd party url rewrite module. You can complete this task in the general settings panel of dashboard; Or one click access for generating all the post urls like that below:</p>  <p>http://domainname.com/yourblogpage/?type=post&cmd=generatelinks</p>  <p>Next we will introduce more handy commands, such as one click access for Content Approval, and hope that it will make your life good and enjoy blogging.</p>]]></description>
      <dc:creator>Baldwin</dc:creator>
      <comments>http://www.sunblognuke.com/blog/entryid/396/shortcut-execute-dnn-blog-commands.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.sunblognuke.com/blog/entryid/396/shortcut-execute-dnn-blog-commands.aspx</guid>
      <pubDate>Wed, 08 Jun 2011 20:04:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.sunblognuke.com/DesktopModules/SunBlog/Views/Handlers/Trackback.ashx?id=396</trackback:ping>
    </item>
    <item>
      <title>SEO Best Practices for DNN Blog Posts</title>
      <category domain="http://www.sunblognuke.com/blog/categoryid/25/sunblognuke.aspx">SunBlogNuke</category>
      <category domain="http://www.sunblognuke.com/blog/categoryid/21/tips-tricks.aspx">Tips &amp; Tricks</category>
      <link>http://www.sunblognuke.com/blog/entryid/392/seo-best-practices-for-dnn-blog-posts.aspx</link>
      <description><![CDATA[  <p><a href="http://www.sunblognuke.com/Portals/0/SunBlogNuke/6/Windows-Live-Writer/2f09ccc12dfa_B744/SEO_DNN_Blog_1.jpg" rel="facebox"><img style="border-bottom: #eeeeee 5px solid; border-left: #eeeeee 5px solid; width: 600px; display: block; float: none; margin-left: auto; border-top: #eeeeee 5px solid; margin-right: auto; border-right: #eeeeee 5px solid; box-shadow: 1px 1px 5px #333333" title="SEO Optimization for DNN Blog Post" alt="SEO_DNN_Blog" src="http://www.sunblognuke.com/Portals/0/SunBlogNuke/6/Windows-Live-Writer/2f09ccc12dfa_B744/SEO_DNN_Blog_thumb.jpg" width="600" height="260" /></a></p>  <p>One of the questions my clients most often ask is: “How do I make sure my dnn blog is SEO friendly and still interesting for my readers?”.  Below are some tips and tricks with the built-in features of Ultimate DNN Blog Module – <a title="Ultimate DNN Blogging Module" href="http://www.sunblognuke.com/" target="_blank">SunBlogNuke</a>, that will help you catch search engines’ attention and optimize your blog posts. </p>  <h3>Blog Post/Article Structure </h3>  <p><strong>Title</strong></p>  <p>The post title will show in the browser tab bar (called ‘Meta Title’) and it should use one but no more than two primary keywords with one keyword being the first word of the title.</p>  <p>Using more than three or more key words in a title may result in your post being ignored/penalized by search engines for <em>‘keyword stuffing’</em> or ‘<em>blog spam’</em>. Just keep in mind that Google pays particular attention to titles - so make sure you get them right. And you can get more SEO tips about blog title from this post <a href="http://www.sitesketch101.com/creating-awesome-eyejerking-post-titles">10 Tips to Awesome, Eye-Jerking Post Titles</a>.</p>  <p><strong>Friendly Url with Post Slug</strong></p>  <p>This post slug is the alternative title for your post and we build friendly seo post url with it if not empty. By default, the post slug will be automatically retrieved from the blog post’s title provide you check the option [<strong>Show SEO Friendly URL</strong>] in the blog settings panel.  For example, by default, some specific post having the following URL:</p>  <p>http://www.yourwebsite.com/5-Killer-Features-will-be-Available-on-SunBlogNuke.aspx</p>  <p>Unfortunately, this is not a very search engine friendly URL, as many of the keywords with meaningless words, such as the word "will" & "be", are at the end of the URL.  By setting your own custom post slug, you are able to create a better URL for the post:</p>  <p>http://www.yourwebsite.com/Killer-Features-SunBlogNuke.aspx</p>  <p>In this case, the post url focuses on the keywords for this post, creating more emphasis on them.  The great thing about this tip is it takes a very minimal amount of time to do and will become second nature once you’ve turned it into a habit. If unchecked the option [<strong>Show SEO Friendly URL</strong>], we also provide the one click utility feature to extract the post slug from title and adjust it into your expected value.</p>  <p><strong>Meta Description</strong></p>  <p>The description (<a href="http://www.seopedia.org/google-and-seo/html-meta-description-tag/">META Description tag</a>) is a one or two sentence statement that tells the reader what your blog post is about when those posted founds in search engines. And it should be a maximum of 150 characters and contain at a maximum of two keywords. But out dilemma is, how do we populate the “content” section of the META description dynamically based on what content we’re viewing?  Simple — we <strong>use a combination of conditional tags and a custom loop</strong> to pull either the page title (if we’re on the homepage) or the description (if we’re in a single post). With that our blog platform will create such unique description tags for each post page. Usually, most bloggers don’t take advantage of the use of the “optional description” section of their Write Post panel. But if you want to exercise even more control over what gets displayed on the <strong>search engine results page</strong>(SERP) for content, then you need to be filling this section out.  If this field is blank, your post description will be generated with the first 150 characters in your post. </p>  <p><strong>Meta keywords</strong></p>  <p>The SunBlogNuke also support Meta keywords with a combination of page key words and all tags of each post. But recently <a href="http://www.ifinity.com.au/Blog/Technical_Blog/EntryId/72/Google-Confirms-Meta-Keywords-Tag-Not-used-for-Rankings">Google Confirms Meta Keywords Tag Not used for Rankings</a>, you just ignore it and let it there now.</p>  <p><strong>Canonical Link</strong></p>  <p>Google, Microsoft and Yahoo announced support for a new 'Canonical Link Element' in the header of your website page that will help clean-up duplicate url's that have been indexed by search engines. This issue is so specially serious in DotNetNuke that there are duplicated contents returned for different urls. For example, the link 'domain.com/default.aspx?tabid=38'  and 'domain.com/home/tabid/38/default.aspx' retures the same page of content in your dnn site.  As for our blogging module, you can build the canonical link for your post to avoid duplicate Urls. Just insert the following code in the top of the current theme file  detailsview.ascx like that:</p>  <p>VB.NET version:</p>  <pre class="code"><span style="color: blue"><</span><span style="color: #a31515">script </span><span style="color: red">language</span><span style="color: blue">="vb" </span><span style="color: red">runat</span><span style="color: blue">="server">
    Protected Overrides Sub </span>OnInit(<span style="color: blue">ByVal </span>e <span style="color: blue">As </span>EventArgs)
        <span style="color: blue">If </span>Entry <span style="color: blue">IsNot Nothing Then
            </span>AddGenericLink(<span style="color: #a31515">"canonical "</span>, <span style="color: blue">String</span>.Empty, Entry.Link)
        <span style="color: blue">End If
    End Sub
</</span><span style="color: #a31515">script</span><span style="color: blue">></span></pre>

<p>C# version:</p>

<pre class="code"><span style="color: blue"><</span><span style="color: #a31515">script </span><span style="color: red">language</span><span style="color: blue">="c#" </span><span style="color: red">runat</span><span style="color: blue">="server">
    protected override void </span>OnInit(<span style="color: #2b91af">EventArgs </span>e)
    {
        <span style="color: blue">if </span>(Entry != <span style="color: blue">null</span>) AddGenericLink(<span style="color: #a31515">"canonical"</span>, <span style="color: blue">string</span>.Empty, Entry.Link);
    }
<span style="color: blue"></</span><span style="color: #a31515">script</span><span style="color: blue">></span></pre>


<p>Note that it just works v4.6+. As for the older version you also apply it with the similar way.</p>

<p>I hope this has helped answer the question about how to make your dnn blog posts SEO Friendly as well as interesting for your readers. Though SunBlogNuke comes with several built-in features for SEO, please you should know that “<strong>Content is King</strong>". The quality of the posts you write is the single most important factor when it comes to Search Optimization on a blog engine, such as awesome tutorials that help people will quite often draw a reader to want to share what they’ve written. If you have more questions about  this topic or blogging,  Please feel free to post a comment below.  I’ll be happy to help.</p>]]></description>
      <dc:creator>Baldwin</dc:creator>
      <comments>http://www.sunblognuke.com/blog/entryid/392/seo-best-practices-for-dnn-blog-posts.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.sunblognuke.com/blog/entryid/392/seo-best-practices-for-dnn-blog-posts.aspx</guid>
      <pubDate>Wed, 01 Jun 2011 16:07:00 GMT</pubDate>
      <slash:comments>5</slash:comments>
      <trackback:ping>http://www.sunblognuke.com/DesktopModules/SunBlog/Views/Handlers/Trackback.ashx?id=392</trackback:ping>
    </item>
    <item>
      <title>Amazing Slide Thumbs with DNN Blog Posts</title>
      <category domain="http://www.sunblognuke.com/blog/categoryid/26/jquery.aspx">jQuery</category>
      <category domain="http://www.sunblognuke.com/blog/categoryid/25/sunblognuke.aspx">SunBlogNuke</category>
      <category domain="http://www.sunblognuke.com/blog/categoryid/21/tips-tricks.aspx">Tips &amp; Tricks</category>
      <link>http://www.sunblognuke.com/blog/entryid/386/amazing-slide-thumbs-with-dnn-blog-posts.aspx</link>
      <description><![CDATA[  <p><img style="display: block; float: none; margin-left: auto; margin-right: auto" class="doubleborder" alt="slide_thumbs" src="http://www.sunblognuke.com/Portals/0/SunBlogNuke/6/Windows-Live-Writer/Amazing-Slide-Thumb-with-DNN-Blog-Posts_EF2E/slide_thumbs.jpg" width="487" height="476" /></p>  <p>jQuery sliders have been spotted to be commonly used in lots of website to display the images/contents in different impressive ways. Since apart from showing large amount of core site content in a limited space on a website, any jQuery slider also has a great capability to engage the viewers and trigger their interest towards what is being shown to them. In the DNN platform,  it’s also a very popular functional widget and there are lots of slider modules for sale in the <a href="http://www.snowcovered.com" rel="nofollow" target="_blank">snowcovered.com</a>. In my opinion, those modules have the vital disadvantage that they are built with static contents and independent with any content publishing tool. In the end you have to modify them one by one if you want to make it look more dynamic. Now we would like to share the alternative useful tool with building neat, elegant and versatile site components with dynamic effects. Yes, that is the Content Slider Widget(CSW) for Ultimate DNN Blog Module – <a title="Ultimate DNN Blogging Module" href="http://www.sunblognuke.com/" target="_blank">SunBlogNuke</a>. </p>  <p>With the help of jQuery & CSW, you will be able to create any super content sliders with your dnn blog posts. So if you’ve been wondering how jQuery content sliders are accomplished and want to try implementing some of them on your DotNetNuke website, here this tutorial will help you with that.  Today we just showcase the amazing slide thumb on how to make viewing images or other site content more comforting and intuitive. Take a look at how the slide thumbs actions – <a href="http://www.sunblognuke.com/showcase/case_study.aspx" target="_blank">demo link</a>. Then let’s go ahead. </p>  <p>In the beginning, please refer to the similar tutorial [<a href="http://www.sunblognuke.com/Support/Docs/entryid/357/Build-Awesome-Content-Slider-for-DNN.aspx" target="_blank">Create an Awesome Content Slider with SunBlogNuke</a>] for some basic concepts, such as custom fields. This slide thumbs requires one original image with a smaller thumbnail for navigation at the bottom. Here we just build the thumbnail with custom field key called "thumbnail" and retrieve the first image from the post content for the original image, for which you can utilize the token [THUMBNAIL]. All right, suppose that the blog posts are ready to showcase now. Next just follow up the steps below:</p>  <p>1) Complete the similar preparation process mentioned in the tutorial [<a href="http://www.sunblognuke.com/Support/Docs/entryid/357/Build-Awesome-Content-Slider-for-DNN.aspx" target="_blank">Create an Awesome Content Slider with SunBlogNuke</a>]. The folder called 'slide_thumbs' in this sample and please download it <a href="http://www.sunblognuke.com/LinkClick.aspx?fileticket=5wOc25S9HPQ%3d&tabid=88&mid=549" rel="nofollow" target="_blank">here</a>.</p>  <p>2) Enter the 'Widget Settings' of Content Slider Widget.</p>  <p>3) Fill in the external utility scripts and it should formatted as http://yourdomain.com/portals/XX/slide_thumbs/slide_thumbs.js.</p>  <p>4) Fill in the external utility styles and it should formatted as http://yourdomain.com/portals/XX/slide_thumbs/style.css.</p>  <p>5) In the "Extra Template" text area, enter the following code: </p>  <pre class="code">{block:first}
<span style="color: blue"><</span><span style="color: #a31515">div </span><span style="color: red">id</span><span style="color: blue">="preview_wrap">
<</span><span style="color: #a31515">div </span><span style="color: red">id</span><span style="color: blue">="preview_outer">
<</span><span style="color: #a31515">div </span><span style="color: red">id</span><span style="color: blue">="preview_inner">
<</span><span style="color: #a31515">div</span><span style="color: blue">><</span><span style="color: #a31515">img </span><span style="color: red">src</span><span style="color: blue">="[THUMBNAIL]" </span><span style="color: red">alt</span><span style="color: blue">="[TITLE]" />
<</span><span style="color: #a31515">a </span><span style="color: red">href</span><span style="color: blue">="[LINK]"></span>[TITLE]<span style="color: blue"></</span><span style="color: #a31515">a</span><span style="color: blue">>
</</span><span style="color: #a31515">div</span><span style="color: blue">>
</span>{/block:first}
{block:last}
<span style="color: blue"><</span><span style="color: #a31515">div</span><span style="color: blue">><</span><span style="color: #a31515">img </span><span style="color: red">src</span><span style="color: blue">="[THUMBNAIL]" </span><span style="color: red">alt</span><span style="color: blue">="[TITLE]" /><</span><span style="color: #a31515">a </span><span style="color: red">href</span><span style="color: blue">="[LINK]"></span>[TITLE]<span style="color: blue"></</span><span style="color: #a31515">a</span><span style="color: blue">></</span><span style="color: #a31515">div</span><span style="color: blue">>
</</span><span style="color: #a31515">div</span><span style="color: blue">>
</</span><span style="color: #a31515">div</span><span style="color: blue">>
</</span><span style="color: #a31515">div</span><span style="color: blue">>
</span>{/block:last}
<span style="color: blue"><</span><span style="color: #a31515">div</span><span style="color: blue">><</span><span style="color: #a31515">img </span><span style="color: red">src</span><span style="color: blue">="[THUMBNAIL]" </span><span style="color: red">alt</span><span style="color: blue">="[TITLE]" /><</span><span style="color: #a31515">a </span><span style="color: red">href</span><span style="color: blue">="[LINK]"></span>[TITLE]<span style="color: blue"></</span><span style="color: #a31515">a</span><span style="color: blue">></</span><span style="color: #a31515">div</span><span style="color: blue">></span></pre>

<p>It built the main section to show the original image with some fields, like post title & link. The extra template is totally new option and it is introduced in the CSW from v4.5. And you maybe have noticed the new tokens  {block:first} & {block:last}, with which creating flexible layout will be more easier and handy to use. Just remember how to user them as follows:</p>

<p><strong>{block:first}xxx{/block:first}</strong> : it wraps the first item in the list and you can stand up it with different tokens or tags. For example you can wrap the started container tag <ul> here.</p>

<p><strong>{block:last} xxx{block:first} </strong>: it wraps the last item in the list and you can stand up it with different tokens or tags. For example you can wrap the closed container tag </ul> here.</p>

<p>Note that the left tags exclude the block sections {block:first}xxx{/block:first} and  {block:last} xxx{block:first}  will be the common item template.</p>

<p>6) In the "Item Template" text area, enter the following code: </p>

<pre class="code">{block:first}
<span style="color: blue"><</span><span style="color: #a31515">div </span><span style="color: red">id</span><span style="color: blue">="thumbs">
<</span><span style="color: #a31515">div </span><span style="color: red">id</span><span style="color: blue">="arrow">
</</span><span style="color: #a31515">div</span><span style="color: blue">>
<</span><span style="color: #a31515">span</span><span style="color: blue">><</span><span style="color: #a31515">img </span><span style="color: red">src</span><span style="color: blue">="[customfield:thumbnail]" </span><span style="color: red">alt</span><span style="color: blue">="[TITLE]" /></</span><span style="color: #a31515">span</span><span style="color: blue">></span>{/block:first}
{block:last}<span style="color: blue"><</span><span style="color: #a31515">span</span><span style="color: blue">><</span><span style="color: #a31515">img </span><span style="color: red">src</span><span style="color: blue">="[customfield:thumbnail]" </span><span style="color: red">alt</span><span style="color: blue">="[TITLE]" /></</span><span style="color: #a31515">span</span><span style="color: blue">></</span><span style="color: #a31515">div</span><span style="color: blue">></span>{/block:last}
<span style="color: blue"><</span><span style="color: #a31515">span</span><span style="color: blue">><</span><span style="color: #a31515">img </span><span style="color: red">src</span><span style="color: blue">="[customfield:thumbnail]" </span><span style="color: red">alt</span><span style="color: blue">="[TITLE]" /></</span><span style="color: #a31515">span</span><span style="color: blue">></span></pre>

<p>It built the thumbnail navigation in the bottom.</p>

<p>6) Click 'Upadte' to save all the modifies and the slideshow will work like a charm. Take a look at how the slide thumbs actions – <a href="http://www.sunblognuke.com/showcase/case_study.aspx" target="_blank">demo link</a> again. </p>

<p>ps: this tutorial was inspired by the post <a href="http://jqueryglobe.com/article/slide-thumbs">http://jqueryglobe.com/article/slide-thumbs</a>. </p>]]></description>
      <dc:creator>Baldwin</dc:creator>
      <comments>http://www.sunblognuke.com/blog/entryid/386/amazing-slide-thumbs-with-dnn-blog-posts.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.sunblognuke.com/blog/entryid/386/amazing-slide-thumbs-with-dnn-blog-posts.aspx</guid>
      <pubDate>Wed, 11 May 2011 16:38:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.sunblognuke.com/DesktopModules/SunBlog/Views/Handlers/Trackback.ashx?id=386</trackback:ping>
    </item>
  </channel>
</rss>
