<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Data Source &#187; CMS</title>
	<atom:link href="http://www.webdatasource.com/tag/cms/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webdatasource.com</link>
	<description>your link to better business solutions</description>
	<lastBuildDate>Wed, 03 Aug 2011 19:22:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Sitecore Lucene Search Index</title>
		<link>http://www.webdatasource.com/2011/07/sitecore-lucene-search-index/</link>
		<comments>http://www.webdatasource.com/2011/07/sitecore-lucene-search-index/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 15:53:51 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[AddCrawler]]></category>
		<category><![CDATA[AddIndex]]></category>
		<category><![CDATA[Basic]]></category>
		<category><![CDATA[CES]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Config]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Crawlers]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[DatabaseCrawler]]></category>
		<category><![CDATA[definition]]></category>
		<category><![CDATA[ExcludeTemplate]]></category>
		<category><![CDATA[GOOG]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google search]]></category>
		<category><![CDATA[GUID]]></category>
		<category><![CDATA[IncludeTemplate]]></category>
		<category><![CDATA[index definitions]]></category>
		<category><![CDATA[index id]]></category>
		<category><![CDATA[indexes]]></category>
		<category><![CDATA[indexing]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[Lucene]]></category>
		<category><![CDATA[Manage]]></category>
		<category><![CDATA[master content]]></category>
		<category><![CDATA[namespace]]></category>
		<category><![CDATA[need]]></category>
		<category><![CDATA[NET]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[SDN]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[search classes]]></category>
		<category><![CDATA[search crawlers]]></category>
		<category><![CDATA[SearchConfiguration]]></category>
		<category><![CDATA[section]]></category>
		<category><![CDATA[SES]]></category>
		<category><![CDATA[Tags]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16882</guid>
		<description><![CDATA[Sitecore has been using Lucene search since version 5, which used the Sitecore.Data.Indexing namespace and Sitecore -&#62; Indexes section in the Web.Config. Starting in Sitecore 6.4, they introduced a new Search namespace &#8211; Sitecore.Search, this uses the Sitecore -&#62; Search -&#62; Configuration -&#62; Indexes section in Web.Config. From what I know, Sitecore recommends using the [...]]]></description>
			<content:encoded><![CDATA[<p>Sitecore has been using Lucene search since version 5, which used the Sitecore.Data.Indexing namespace and Sitecore -&gt; Indexes section in the Web.Config.</p>
<p>Starting in Sitecore 6.4, they introduced a new Search namespace &#8211; Sitecore.Search, this uses the Sitecore -&gt; Search -&gt; Configuration -&gt; Indexes section in Web.Config.</p>
<p>From what I know, Sitecore recommends using the new namespace and the old namespace is going to be deprecated starting Sitecore 6.5. The following is a blurb from Sitecore 6.5 Release notes from SDN:<br />
&#8220;The Sitecore.Data.Indexing namespace has been deprecated and will be removed in a future version of the CMS in favor of the more powerful and flexible Sitecore.Search classes and corresponding index definitions. &#8220;</p>
<p>Since there is only one document on this new namespace, it&#8217;s difficult to get more information when you find yourself in a bind. I had to google search to find bits and pieces and so I am writing this post.</p>
<p>Here is the link to the PDF on this site. <a href="http://www.webdatasource.com/pdf/sitecore_search_and_indexing-a4.pdf" target="_blank">Click Here</a> (NO SDN access needed)</p>
<p>The basic configuration is given below:</p>
<pre name="code"  class="xml">      &lt;configuration type="Sitecore.Search.SearchConfiguration, Sitecore.Kernel" singleInstance="true"&gt;
        &lt;indexes hint="list:AddIndex"&gt;
          ... ... ...
          &lt;index id="IndexNAME" type="Sitecore.Search.Index, Sitecore.Kernel"&gt;
            &lt;param desc="name"&gt;$(id)&lt;/param&gt;
            &lt;param desc="folder"&gt;im_index&lt;/param&gt;
            &lt;Analyzer ref="search/analyzer"/&gt;
            &lt;locations hint="list:AddCrawler"&gt;
              &lt;master type="Sitecore.Search.Crawlers.DatabaseCrawler, Sitecore.Kernel"&gt;
                &lt;Database&gt;master&lt;/Database&gt;
                &lt;Tags&gt;master content&lt;/Tags&gt;
                &lt;Root&gt;/sitecore/content&lt;/Root&gt;
                &lt;IndexAllFields&gt;true&lt;/IndexAllFields&gt;
                &lt;include hint="list:IncludeTemplate"&gt;
                  &lt;template comment="Template1"&gt;{8917CADF-2148-4328-B595-217C5A9CCA7D}&lt;/template&gt;
                  &lt;template comment="Template2"&gt;{2A18027D-CA51-4E5D-A7C1-51096E09C16C}&lt;/template&gt;
                &lt;/include&gt;
                &lt;include hint="list:ExcludeTemplate"&gt;
                  &lt;template&gt;{8C18027D-CA51-4E5D-A7C1-510965555C}&lt;/template&gt;
                &lt;/include&gt;
                &lt;!--&lt;include hint="list:IncludeField"&gt;
                  &lt;fieldId&gt;{GUID}&lt;/fieldId&gt;
                &lt;/include&gt;--&gt;
              &lt;/master&gt;
            &lt;/locations&gt;
          &lt;/index&gt;
        &lt;/indexes&gt;
      &lt;/configuration&gt;</pre>
<p>Here is a piece of sample code to query the index:</p>
<pre name="code"  class="c-sharp">    Sitecore.Search.Index searchIndex = Sitecore.Search.SearchManager.GetIndex("Search Index Name"); //replace string with the name of the search index
    using (IndexSearchContext context = searchIndex.CreateSearchContext())
    {
        SearchHits hits = context.Search("search string");  //replace string with the actual search string
        SomeRepeater.DataSource = hits.FetchResults(0, 25); //first param is the start item, second is the count
        SomeRepeater.DataBind();
        ResultsCount = hits.FetchResults(0, hits.Length).Count();
    }</pre>
<p>Here are some useful links:</p>
<p><a href="http://sitecoreblog.alexshyba.com/2011/04/search-index-troubleshooting.html" target="_blank">Search Index Troubleshooting</a> by Alex Shyba</p>
<p><a href="http://trac.sitecore.net/IndexViewer" target="_blank">Index Viewer</a> in Sitecore Shared Source</p>
<p>&nbsp;</p>
<p>I hope this is useful. If you have any questions please don&#8217;t hesitate to get in touch!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2011/07/sitecore-lucene-search-index/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sitecore Recognized as Top Content Management System (CMS)</title>
		<link>http://www.webdatasource.com/2009/10/sitecore-recognized-as-top-content-management-system-cms/</link>
		<comments>http://www.webdatasource.com/2009/10/sitecore-recognized-as-top-content-management-system-cms/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 02:35:19 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[analytic tools]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[business software]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[company]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[contexts]]></category>
		<category><![CDATA[dynamic environment]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[ecommerce products]]></category>
		<category><![CDATA[enjoyable experience]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[experience]]></category>
		<category><![CDATA[flexibility]]></category>
		<category><![CDATA[forecasting]]></category>
		<category><![CDATA[forrester research]]></category>
		<category><![CDATA[functionality]]></category>
		<category><![CDATA[global approach]]></category>
		<category><![CDATA[independent research firm]]></category>
		<category><![CDATA[knowledge]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[marketing departments]]></category>
		<category><![CDATA[multilingual]]></category>
		<category><![CDATA[own website]]></category>
		<category><![CDATA[powerful solution]]></category>
		<category><![CDATA[Presentation]]></category>
		<category><![CDATA[Recognized]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[separation]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[technical knowledge]]></category>
		<category><![CDATA[using graphics]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[WebDatamation]]></category>
		<category><![CDATA[workflow]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16806</guid>
		<description><![CDATA[For businesses that use websites as a key strategic component of their business, a Content Management System or CMS is a vital. We at Webdatamation have long pointed to the power and flexibility of Sitecore as an outstanding solution in the CMS arena. We&#8217;ve been using Sitecore for our own website and for client&#8217;s websites [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">For businesses that use websites as a key strategic component of their business, a Content Management System or CMS is a vital. We at <a href="http://www.webdatamation.com" target="_blank">Webdatamation</a> have long pointed to the power and flexibility of Sitecore as an outstanding solution in the CMS arena.</p>
<p style="text-align: justify;">We&#8217;ve been using Sitecore for our own website and for client&#8217;s websites because of its incredible power and functionality. Now Sitecore has also been recognized by independent research firm <a href="http://www.sitecore.net/en/News/Press-releases/2009/Sitecore-included-in-Forrester-Report.aspx?mobile=0" target="_blank">Forrester Research</a> as a top CMS.</p>
<p style="text-align: justify;">Forrester Research points out what the experts at Webdatamation could tell you &#8212; the flexibility and power of Sitecore make it strong in areas where competitors are weak.</p>
<p style="text-align: justify;">The system is excellent for ease in creating content and integrating the content into a site, managing the workflow, and integrating content.</p>
<p style="text-align: justify;">Sitecore also gets high marks for its ability to effectively target sites and content, having a global approach, integrating numerous sites, and for its community controls.</p>
<p style="text-align: justify;">Sitecore leads out in multilingual content and in providing the means for making a separation between content and the presentation. This creates a dynamic environment for delivering the message and for using graphics and text in other contexts for different purposes.</p>
<p style="text-align: justify;"><a href="http://www.webdatamation.com/" target="_blank">Webdatamation</a> chose Sitecore in part because it is a powerful solution for both simple websites as well as complex, fully powered sites.</p>
<p style="text-align: justify;">The features of Sitecore allow for a highly flexible website that can integrate all of the Web 2.0 features.  Marketing departments can add website content or sales information to a company site easily without a great deal of technical knowledge, and still maintain a professional and responsive site.</p>
<p style="text-align: justify;">It&#8217;s simple to integrate any analytic tools  and other business software into the Sitecore system, and it&#8217;s compatible with ecommerce products so that customers and site visitors have a seamless and enjoyable experience on your site.</p>
<p style="text-align: justify;">We also like Sitecore because of their constant updates, research and trend forecasting. We know that our customers will have all the latest tools at their fingertips as soon as they are available.</p>
<p style="text-align: justify;">If you haven&#8217;t yet seen what Sitecore can do for you, contact us at <a href="http://www.webdatamation.com/Contact%20Us.aspx" target="_blank">Webdatamation</a> and let us give you a glimpse.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/10/sitecore-recognized-as-top-content-management-system-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comparing Umbraco and DotNetNuke</title>
		<link>http://www.webdatasource.com/2009/04/comparing-umbraco-and-dotnetnuke/</link>
		<comments>http://www.webdatasource.com/2009/04/comparing-umbraco-and-dotnetnuke/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 18:38:11 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[advantage]]></category>
		<category><![CDATA[anyone]]></category>
		<category><![CDATA[anything]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[banner ads]]></category>
		<category><![CDATA[blank page]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[dnn]]></category>
		<category><![CDATA[Dot]]></category>
		<category><![CDATA[dotnetnuke]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[ecommerce solutions]]></category>
		<category><![CDATA[events news]]></category>
		<category><![CDATA[flexibility]]></category>
		<category><![CDATA[high quality]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[legal compliance]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[news banner]]></category>
		<category><![CDATA[open source content management]]></category>
		<category><![CDATA[OSS]]></category>
		<category><![CDATA[plenty]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[regularity]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[success]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[text image]]></category>
		<category><![CDATA[trouble]]></category>
		<category><![CDATA[umbraco]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web technology]]></category>
		<category><![CDATA[Word]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16698</guid>
		<description><![CDATA[<p style="text-align: justify;">So if you are going for an open source Content Management System (CMS), which should you choose: DotNetNuke (DNN) or Umbraco.</p>
<p style="text-align: justify;">Both have the advantage of being open source programs, which means they are constantly updated and improved. There are many plugins and applications created by a core of invested users, increasing functionality and removing bugs with regularity.</p>
<p style="text-align: justify;">Still, there are plenty of differences, as anyone who has used both systems will note.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">So if you are going for an open source Content Management System (CMS), which should you choose: DotNetNuke (DNN) or Umbraco.</p>
<p style="text-align: justify;">Both have the advantage of being open source programs, which means they are constantly updated and improved. There are many plugins and applications created by a core of invested users, increasing functionality and removing bugs with regularity.</p>
<p style="text-align: justify;">Still, there are plenty of differences, as anyone who has used both systems will note.</p>
<p style="text-align: justify;">Here are some things to consider about Umbraco:</p>
<ul style="text-align: justify;">
<li>It can be edited in Microsoft Word, making for easy editing for most users.</li>
<li> There are OSS or commercial install options</li>
<li> A high-quality, highly functional CMS</li>
<li> Install gives you a blank page – no template, not much of anything else – This means plenty of freedom and flexibility – freedom to succeed or freedom to fail. Success of a site is entirely up to a developer, meaning you must have a highly qualified and creative developer who also knows legal compliance and standards compliance.</li>
<li> Umbraco has high requirements for hosting, so it is difficult to find a “shared” hosting environment that will support it</li>
<li> Still working on good ecommerce solutions</li>
<li> Version 4 has better support for Safari and Firefox</li>
<li> There are good plugins available, and a management system built into Umbraco</li>
</ul>
<p style="text-align: justify;">By contrast, here are some items to consider about DotNetNuke:</p>
<p style="text-align: justify;">Has a proprietary feel, despite being open source</p>
<ul style="text-align: justify;">
<li> Dot NET developers like it, those who are not dot NET developers have trouble with it</li>
<li> Based on Microsoft’s ASP.NET, which is the most popular web technology currently</li>
<li> Cheap to use and reduces total development costs – no ongoing licensing fees</li>
<li> Full access to source code so it can be altered to fit individual organizations</li>
<li> Can manage text, image, documents, links, events, news, banner ads and threaded info</li>
<li> Supports multiple websites</li>
<li> Installs easily</li>
<li> Can manage site hosting, content, security, web design and membership in one program</li>
<li> Multi-language ability</li>
<li> Fully extensible and scalable</li>
<li> User friendly interface and intuitve site wizards, help icons and interface for those familiar with Dot NET</li>
<li> DNN has a large user base (125,000 registered users) and a core programming team dedicated to the system, so it is a large community. There are also an increasing number of third party developers of plug-ins, etc. for DNN</li>
</ul>
<p style="text-align: justify;">Which open-source hosting program is right for you? It depends on your abilities, wants and business model. Either way you go, using an open source CMS might be the way for you to save money and still have a strong, attractive site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/04/comparing-umbraco-and-dotnetnuke/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>DotNet Nuke CMS &#8211; Open Source Solutions for Small Business</title>
		<link>http://www.webdatasource.com/2009/03/dotnet-nuke-cms-open-source-solutions-for-small-business/</link>
		<comments>http://www.webdatasource.com/2009/03/dotnet-nuke-cms-open-source-solutions-for-small-business/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 13:22:57 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[adaptable framework]]></category>
		<category><![CDATA[agreement]]></category>
		<category><![CDATA[ares]]></category>
		<category><![CDATA[BSD]]></category>
		<category><![CDATA[cms content]]></category>
		<category><![CDATA[cms support]]></category>
		<category><![CDATA[commercial]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[core development]]></category>
		<category><![CDATA[credit]]></category>
		<category><![CDATA[database options]]></category>
		<category><![CDATA[development group]]></category>
		<category><![CDATA[dnn]]></category>
		<category><![CDATA[dotnetnuke]]></category>
		<category><![CDATA[extranets]]></category>
		<category><![CDATA[interested supporters]]></category>
		<category><![CDATA[language options]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[management modules]]></category>
		<category><![CDATA[No-cost]]></category>
		<category><![CDATA[open source cms]]></category>
		<category><![CDATA[open source platform]]></category>
		<category><![CDATA[premium]]></category>
		<category><![CDATA[profit purposes]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[source users]]></category>
		<category><![CDATA[sql server 2005]]></category>
		<category><![CDATA[sql server 2005 express]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[tight budget]]></category>
		<category><![CDATA[use]]></category>
		<category><![CDATA[visual studio 2005]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16688</guid>
		<description><![CDATA[<p style="text-align: justify;">DotNetNuke is an open source CMS (Content Management System) developed by a ARES and constantly modified, improved and updated by a community of interested supporters and developers.</p>
<p style="text-align: justify;">The DotNetNuke system is particularly focused on small businesses and organizations that operate on a tight budget (for example, many non-profit organizations), giving them many of the features of a large CMS on an open source platform.</p>
<p style="text-align: justify;">DotNetNuke benefits from community sites that host developers. End users can join these communities and benefit from the combined experience of hundred or thousands of other developers who are also using DotNetNuke for the same kinds of projects daily.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">DotNetNuke is an open source CMS (Content Management System) developed by a ARES and constantly modified, improved and updated by a community of interested supporters and developers.</p>
<p style="text-align: justify;">The DotNetNuke system is particularly focused on small businesses and organizations that operate on a tight budget (for example, many non-profit organizations), giving them many of the features of a large CMS on an open source platform.</p>
<p style="text-align: justify;">DotNetNuke benefits from community sites that host developers. End users can join these communities and benefit from the combined experience of hundred or thousands of other developers who are also using DotNetNuke for the same kinds of projects daily.</p>
<p style="text-align: justify;">Developers are able to share ideas and solutions and propose and tweak the program constantly so everyone benefits with improved projects and results.</p>
<p style="text-align: justify;">Some advantages of DotNetNuke include:<br />
•    Flexible and adaptable framework that can accommodate websites, extranets, and intranets<br />
•    Intuitive and user-friendly design that allows users with little technical knowledge manage a web site<br />
•    Site wizards, help buttons, and a user interface that is constantly updated for ease of use<br />
•    CMS support from a dedicated core development group<br />
•    Straightforward, simple installation for quick deployment<br />
•    Many language options, making DotNetNuke viable for users in many different countries<br />
•    No-cost, open source – users can do whatever they like with the program under a BSD agreement. Users can use the program for commercial or non profit purposes, with no requirements other than directing credit to the DotNetNuke community<br />
•    Lowers the cost of managing multiple websites<br />
•    The opportunity to create and upsell premium content for clients – site templates, content management modules and many database options, for example<br />
•    Utilizes all the latest technologies, including modules, module packaging, ASP.NET 2.0, Visual Studio 2005, SQL Server 2005 Express, and Visual Web Developer</p>
<p style="text-align: justify;">There are over 150,000 registered users  of DotNetNuke, and a number of active producers of plugins, modules and templates for the program, making it a growing and dynamic content management system.</p>
<p style="text-align: justify;">There&#8217;s some great site consistency when using DotNetNuke (DNN) and easy site navigation. The pages turnaround quickly, a number of people can work on a site at once, and there is great growth potential with DNN.</p>
<p style="text-align: justify;">DotNetNuke is another highly versatile and functional open source solution for Content Management, particularly for small businesses and non profits.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/03/dotnet-nuke-cms-open-source-solutions-for-small-business/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Umbraco 4 – Open Source Content Management for ASP.NET</title>
		<link>http://www.webdatasource.com/2009/03/umbraco-4-%e2%80%93-open-source-content-management-for-aspnet/</link>
		<comments>http://www.webdatasource.com/2009/03/umbraco-4-%e2%80%93-open-source-content-management-for-aspnet/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 23:57:07 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[active server pages]]></category>
		<category><![CDATA[alteration]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[CLR]]></category>
		<category><![CDATA[ecommerce solution]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[Explorer]]></category>
		<category><![CDATA[generation]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[markup]]></category>
		<category><![CDATA[NET]]></category>
		<category><![CDATA[open source content]]></category>
		<category><![CDATA[open source content management]]></category>
		<category><![CDATA[open source content management system]]></category>
		<category><![CDATA[open source program]]></category>
		<category><![CDATA[open source solution]]></category>
		<category><![CDATA[proprietary programs]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[site designers]]></category>
		<category><![CDATA[step]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[umbraco]]></category>
		<category><![CDATA[user interface]]></category>
		<category><![CDATA[web application development]]></category>
		<category><![CDATA[web standards]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16680</guid>
		<description><![CDATA[<p style="text-align: justify;">Microsoft's ASP.NET has been described as not only the next step in ASP (Active Server Pages), but rather the next generation of web development, period. The ASP system now works with a universally understood CLR (Common Language Runtime), executing code so that different languages can interact with one another seamlessly, making Web application development simple and straightforward.</p>
<p style="text-align: justify;">Now, there is a new open source content management system that utilizes the power and simplicity of ASP.NET.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Microsoft&#8217;s ASP.NET has been described as not only the next step in ASP (Active Server Pages), but rather the next generation of web development, period. The ASP system now works with a universally understood CLR (Common Language Runtime), executing code so that different languages can interact with one another seamlessly, making Web application development simple and straightforward.</p>
<p style="text-align: justify;">Now, there is a new open source content management system that utilizes the power and simplicity of ASP.NET.</p>
<p style="text-align: justify;">Umbraco has developed a Content Management System (CMS) that works on Microsoft&#8217;s ASP.NET.</p>
<p style="text-align: justify;">Advantages to Umbraco are:<br />
•	Supports any of the current browsers – no more error messages when a client using a browser other than Explorer visits you site<br />
•	Designers can create xhtml that works and is easy to access, while still leaving their own markup intact<br />
•	It supports all .NET based controls without any alteration or modification<br />
•	Gives designers a free hand when it comes to layout and placement, and allows the latest web standards – there are no constraints on utilizing the Umbraco framework<br />
•	Everyone can help fix bugs, work on content, whatever  &#8212; simultaneously<br />
•	&#8220;Brilliant&#8221; master pages<br />
•	It integrates existing technology instead of introducing new proprietary programs – ie: uses HTML instead of some new markup, and uses xslts</p>
<p style="text-align: justify;">Other companies are creating other solutions utilizing the Umbraco platform, including an ecommerce solution. As Umbraco continues to develop, doubtless more solutions will be created for the platform.</p>
<p style="text-align: justify;">Many users around the world appreciate the open source solution&#8217;s speed and ease of use. Users say it is easy and intuitive to pick up, and can expand to meet growing needs. Others appreciate its flexibility and speed.</p>
<p style="text-align: justify;">However, there are still some problems with the user interface, and some users complain that there are still bugs in the code. This may be expected with an open source program, and its likely that these will continue to be improved. Several users decry the lack of documentation, as well.</p>
<p style="text-align: justify;">Still, since Microsoft is still king of content, it makes sense to have a CMS that is Windows based. Umbraco integrates .NET technology easily and at a price that can&#8217;t be beat. It is constantly updated and improved for a constantly improving – or at least changing—CMS that is responsive to the needs of the users.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/03/umbraco-4-%e2%80%93-open-source-content-management-for-aspnet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Content Management System</title>
		<link>http://www.webdatasource.com/2009/03/content-management-system/</link>
		<comments>http://www.webdatasource.com/2009/03/content-management-system/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 15:53:32 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[business applications]]></category>
		<category><![CDATA[company]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[content management systems]]></category>
		<category><![CDATA[content providers]]></category>
		<category><![CDATA[control]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[customer experience]]></category>
		<category><![CDATA[customer relationship management]]></category>
		<category><![CDATA[customer relationship management software]]></category>
		<category><![CDATA[design elements]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[ecommerce products]]></category>
		<category><![CDATA[enterprise resource planning]]></category>
		<category><![CDATA[enterprise resource planning software]]></category>
		<category><![CDATA[feature]]></category>
		<category><![CDATA[intuitive system]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[marketing department]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[opportunity]]></category>
		<category><![CDATA[part]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[performance features]]></category>
		<category><![CDATA[planning]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[programming expertise]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[seamless integration]]></category>
		<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[status]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[tailor]]></category>
		<category><![CDATA[trend]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16666</guid>
		<description><![CDATA[<p style="text-align: justify;">The current explosion in eCommerce has highlighted the advantages of and excellent Content Management System (CMS) like Sitecore.</p>
<p style="text-align: justify;">For businesses that consider their website and their customers who contact them online to be an integral part of their business, using a content management system is only logical. It will allow those businesses to provide a seamless, high quality online experience that open source or low-end solutions simply can't provide.</p>
<p style="text-align: justify;">For many of our customers, their website is a strategic part of their business. The added security and performance features of a CMS allow these businesses to focus the website and the usability features that make the customer experience truly superior.</p>
<p style="text-align: justify;">By giving developers and content providers a simple to use and intuitive system, a CMS allows the marketing department or the sales department to create website content and design elements of the site. These professionals understand the customers and their needs better than developers or IT departments.  With a CMS, the control goes to the people with the ideas, not only to the people with the programming expertise</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">The current explosion in eCommerce has highlighted the advantages of and excellent Content Management System (CMS) like <a href="http://www.sitecore.net" target="_blank">Sitecore</a>.</p>
<p style="text-align: justify;">For businesses that consider their website and their customers who contact them online to be an integral part of their business, using a content management system is only logical. It will allow those businesses to provide a seamless, high quality online experience that open source or low-end solutions simply can&#8217;t provide.</p>
<p style="text-align: justify;">For many of our customers, their website is a strategic part of their business. The added security and performance features of a CMS allow these businesses to focus the website and the usability features that make the customer experience truly superior.</p>
<p style="text-align: justify;">By giving developers and content providers a simple to use and intuitive system, a CMS allows the marketing department or the sales department to create website content and design elements of the site. These professionals understand the customers and their needs better than developers or IT departments.  With a CMS, the control goes to the people with the ideas, not only to the people with the programming expertise</p>
<p style="text-align: justify;">The easy integration with business applications also provides a great opportunity for businesses to provide a better integration of Customer Relationship Management software and Enterprise Resource Planning software, as well as any analytics tools.</p>
<p style="text-align: justify;">Because you, the company, are in control of the content and the programs and tools that you use on your site, you are able to better tailor your customers&#8217; experience on your website, offer them seamless integration of eCommerce products and Web 2.0 feature, and fully optimize your site for search engines, so current and new customers can find you easily.</p>
<p style="text-align: justify;">With so many advantages for developers and for the end customers, its easy to see why Content Management Systems are increasingly popular.</p>
<p style="text-align: justify;">We think we offer you the best possible CMS with Sitecore. While there are still features they can improve, as we&#8217;ve mentioned here before, overall they provide a powerful program that is fully scalable so it can grow with your company. It&#8217;s also easy to use and forward thinking, constantly updating the product and forecasting the next trend, then responding to it.</p>
<p style="text-align: justify;">Their &#8220;Gold&#8221; partner status with Microsoft ensures continuing support for all its best features.</p>
<p style="text-align: justify;">If you haven&#8217;t utilized the power of a great CMS to provide your customer with the best possible experience online, I&#8217;d suggest giving it a <a href="http://www.webdatamation.com">try today</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/03/content-management-system/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sitecore CMS 6 Fundamental Concepts</title>
		<link>http://www.webdatasource.com/2009/02/sitecore-cms-6-fundamental-concepts/</link>
		<comments>http://www.webdatasource.com/2009/02/sitecore-cms-6-fundamental-concepts/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 02:20:15 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[fundamental concepts]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16645</guid>
		<description><![CDATA[Here is a PDF about Sitecore CMS 6 Fundamental Concepts. I hope you find it useful.]]></description>
			<content:encoded><![CDATA[<p>Here is a <a href="http://www.webdatamation.com/docs/Fundamental%20Concepts%20Sitecore%206.pdf" target="_blank"><span style="color: #3366ff;">PDF</span></a> about Sitecore CMS 6 Fundamental Concepts. I hope you find it useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/02/sitecore-cms-6-fundamental-concepts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Intro to DotNetNuke</title>
		<link>http://www.webdatasource.com/2008/11/intro-to-dotnetnuke/</link>
		<comments>http://www.webdatasource.com/2008/11/intro-to-dotnetnuke/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 14:51:57 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[basic knowledge]]></category>
		<category><![CDATA[Cascading]]></category>
		<category><![CDATA[cascading style sheets]]></category>
		<category><![CDATA[commerce]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[content management systems]]></category>
		<category><![CDATA[content menus]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[customization]]></category>
		<category><![CDATA[customization features]]></category>
		<category><![CDATA[daunting task]]></category>
		<category><![CDATA[deploy]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[dotnetnuke]]></category>
		<category><![CDATA[dream]]></category>
		<category><![CDATA[dream website]]></category>
		<category><![CDATA[Duke Nukem]]></category>
		<category><![CDATA[dynamic content]]></category>
		<category><![CDATA[existence]]></category>
		<category><![CDATA[expertise]]></category>
		<category><![CDATA[extranets]]></category>
		<category><![CDATA[feature]]></category>
		<category><![CDATA[functionalities]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[gui features]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[html files]]></category>
		<category><![CDATA[intranets]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[javascript css]]></category>
		<category><![CDATA[mailing]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[microsoft framework]]></category>
		<category><![CDATA[NET]]></category>
		<category><![CDATA[offering]]></category>
		<category><![CDATA[open source cms]]></category>
		<category><![CDATA[placeholders]]></category>
		<category><![CDATA[set]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[way]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web designers]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=7685</guid>
		<description><![CDATA[<p style="text-align: justify;"><a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a> - another powerful content management system to add to the existing list. With so many CMS's around and each one of them offering you a vast set of features, you feel pampered. A few years back, building your dream website for your organization and managing its content simultaneously, seemed such a daunting task. However after Content Management Systems have come into existence, publishing dynamic content in a consistently structured and customized manner has been astonishingly simplified.</p>
<p style="text-align: justify;">With over 500,000 registered users and 5.0 million downloads in late 2007 (as per official sources), <a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a> has become one of today’s largest and effective open source CMS. It has been written in Microsoft’s VB.NET for the ASP.NET (also by Microsoft) framework. With an extensible core and a set of additional customization features that include modules and skins, <a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a> can be used to develop, deploy and efficiently manage websites, including extranets and intranets.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a> &#8211; another powerful content management system to add to the existing list. With so many CMS&#8217;s around and each one of them offering you a vast set of features, you feel pampered. A few years back, building your dream website for your organization and managing its content simultaneously, seemed such a daunting task. However after Content Management Systems have come into existence, publishing dynamic content in a consistently structured and customized manner has been astonishingly simplified.</p>
<p style="text-align: justify;">With over 500,000 registered users and 5.0 million downloads in late 2007 (as per official sources), <a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a> has become one of today’s largest and effective open source CMS. It has been written in Microsoft’s VB.NET for the ASP.NET (also by Microsoft) framework. With an extensible core and a set of additional customization features that include modules and skins, <a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a> can be used to develop, deploy and efficiently manage websites, including extranets and intranets.</p>
<p style="text-align: justify;">What makes DotNetNuke stand apart form the other CMS&#8217;s is the way in which it allows you to implement modules and skins, in order to customize your web application(s). Without any expertise of development in ASP.NET, web designers can develop skins for an application and it is this feature completely separates design from content. Only basic knowledge of HTML and understanding the inherent steps to prepare and implement the skins themselves is necessary. Skins have been implemented in DotNetNuke as basic HTML files with placeholders that serve as templates for content, menus and other GUI features. This includes support files such as JavaScript, CSS (Cascading Style Sheets) and images.</p>
<p style="text-align: justify;">The DotNetNuke architecture can be extended to provide an additional set of features and functionalities by the use of pluggable modules. The core includes almost a dozen of them that is included with the distribution and other modules can be downloaded from the official <a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a> website. These modules include pluggable add-ons some of which are forums, blogs, wiki, e commerce systems and mailing lists.</p>
<p style="text-align: justify;">There have also been some criticisms associated with this CMS. The instructions for creating an appropriate module are cumbersome. A very important feature that lacks in DotNetNuke is the ability to dynamically localize the content of your website. There is no provision for providing content in languages other than English. There has also been debate on the fact that some of its older modules do not work as advertised.</p>
<p style="text-align: justify;">However recently, the quality of the newer DotNetNuke releases have improved and are more stable compared to the earlier releases. The official portal features regular updates. Moreover, <a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a> has an impressive fan following. It has grown more and more popular with the passage of time. There are a number of online user groups available for assistance where you can learn more about the <a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a> platform.</p>
<p style="text-align: justify;">I remember playing the “Duke Nukem” game once. Speaking of CMS&#8217;s, I often <a href="http://www.dotnetnuke.com/" target="_blank">DotNetNuke</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2008/11/intro-to-dotnetnuke/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Intro to Sitecore</title>
		<link>http://www.webdatasource.com/2008/10/another-intro-to-sitecore/</link>
		<comments>http://www.webdatasource.com/2008/10/another-intro-to-sitecore/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 14:37:23 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[ability]]></category>
		<category><![CDATA[appearance]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[area]]></category>
		<category><![CDATA[authorization scheme]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[CMSs]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[content editors]]></category>
		<category><![CDATA[content life cycle]]></category>
		<category><![CDATA[content management systems]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[Editing]]></category>
		<category><![CDATA[instantaneous feedback]]></category>
		<category><![CDATA[latter]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[life cycle management]]></category>
		<category><![CDATA[lot]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[NET]]></category>
		<category><![CDATA[page content]]></category>
		<category><![CDATA[page layouts]]></category>
		<category><![CDATA[separation]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[striking feature]]></category>
		<category><![CDATA[Studio]]></category>
		<category><![CDATA[subject matter experts]]></category>
		<category><![CDATA[target audience]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[unison]]></category>
		<category><![CDATA[Visual]]></category>
		<category><![CDATA[visual studio]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web service]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[website administrators]]></category>
		<category><![CDATA[website statistics]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[wysiwyg environment]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=6995</guid>
		<description><![CDATA[<p style="text-align: justify;">Content Management Systems are everywhere. Marketing analysts, subject matter experts and website administrators are all switching over to CMSs in unison for a lucid separation of presentation from content on their website and/or web service, with more control on the latter. This in turn facilitates reduced IT expenditures for your organization, ensures steady yet consistent content life cycle management and streamlines the target audience to desired areas. Sitecore is one such flexible CMS that seems to fit the above requirements.</p>
<p style="text-align: justify;">Sitecore is based on the .NET technology. Setting up and deploying Sitecore is quite straightforward and you can get started with creating your new website rightaway. Sitecore is totally committed to the .NET framework and hence provides regular stable releases and updates thus complimenting the latest releases of .NET, Visual Studio, SQL server and Windows server.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Content Management Systems are everywhere. Marketing analysts, subject matter experts and website administrators are all switching over to CMSs in unison for a lucid separation of presentation from content on their website and/or web service, with more control on the latter. This in turn facilitates reduced IT expenditures for your organization, ensures steady yet consistent content life cycle management and streamlines the target audience to desired areas. Sitecore is one such flexible CMS that seems to fit the above requirements.</p>
<p style="text-align: justify;">Sitecore is based on the .NET technology. Setting up and deploying Sitecore is quite straightforward and you can get started with creating your new website rightaway. Sitecore is totally committed to the .NET framework and hence provides regular stable releases and updates thus complimenting the latest releases of .NET, Visual Studio, SQL server and Windows server.</p>
<p style="text-align: justify;">One striking feature that you would notice once you have started creating your website with Sitecore is the ability to edit content In-Line. This allows you (or your editor) to browse through the pages of your site, just as a customer or an external user would normally do, and edit content by simply clicking on desired areas. This provides you an instantaneous feedback on the overall appearance and content of the edited area and saves quite a lot of your time. Editing content on one browser window and then testing the results on another seems quite a hassle, does it not?</p>
<p style="text-align: justify;">Sitecore has a rich set of features some of which we shall discuss here. It provides you with a role based authorization scheme for your page content editors to edit parts of the site, based on their respective needs. Design is totally segregated from content and designers get a WYSIWYG environment to effectively create designs and page layouts without having to code. Sitecore claims to increase your page rankings and goal conversions, additionally providing you exhaustive reports on website statistics.</p>
<p style="text-align: justify;">There is also some real good news for advanced developers. Sitecore has Visual Studio integration with intellisense and this enables programmers to thoroughly explore and customize the rich Sitecore API consisting of over more than 1,300 classes and 5,000 methods. It has a pipeline based architecture based on the .NET framework that is both open and extensible. Thus, advanced developers, proficient in Visual Studio can make use of this open architecture to their advantage and customize it to fit the requirements of their organization. They may even add new custom features.</p>
<p style="text-align: justify;">However, it is worthwhile to mention here that mere installation and getting started with any CMS that has an extensive set of features is not just enough. If your content is not professional and well managed, you may get disastrous results. It is worth paying to ensure that enough research has been put to create content that best defines your product and your customer’s requirements. All you need to do now is install your desired CMS and see your sales soar!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2008/10/another-intro-to-sitecore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intro to Umbraco</title>
		<link>http://www.webdatasource.com/2008/10/intro-to-umbraco/</link>
		<comments>http://www.webdatasource.com/2008/10/intro-to-umbraco/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 13:38:38 +0000</pubDate>
		<dc:creator>NetBee</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[ascx]]></category>
		<category><![CDATA[aspect]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[content management systems]]></category>
		<category><![CDATA[control]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[deploy]]></category>
		<category><![CDATA[design templates]]></category>
		<category><![CDATA[designers]]></category>
		<category><![CDATA[dll files]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[ease]]></category>
		<category><![CDATA[emphasis]]></category>
		<category><![CDATA[folders]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[freedom]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[Integration]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[internet information services]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[know-how]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[markup]]></category>
		<category><![CDATA[matter]]></category>
		<category><![CDATA[matter of fact]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MySql]]></category>
		<category><![CDATA[NET]]></category>
		<category><![CDATA[novice developers]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[platform]]></category>
		<category><![CDATA[plethora]]></category>
		<category><![CDATA[professional design]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[technical parameters]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[time saver]]></category>
		<category><![CDATA[today]]></category>
		<category><![CDATA[umbraco]]></category>
		<category><![CDATA[use]]></category>
		<category><![CDATA[Visual]]></category>
		<category><![CDATA[visual studio]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=6822</guid>
		<description><![CDATA[<p style="text-align: justify;">With a plethora of Content Management Systems available today, it becomes very difficult to choose form one of them. As a matter of fact, the CMS that you would choose would also depend on the architecture or the platform where you would deploy your project. Having discussed on the Joomla CMS which is based on PHP and MySql, it is now time to review the <a href="http://www.umbraco.org/" target="_blank">Umbraco</a> CMS that is based on Microsoft’s ASP.NET technology. Well, this one is for the .NET fans. The entire source of the CMS has been written in C# and is available for the developers to download and modify for free. Yes, <a href="http://www.umbraco.org/" target="_blank">Umbraco</a> is open source.</p>
<p style="text-align: justify;">You do not require beforehand knowledge of Microsoft’s .NET framework or C# in particular, to get started with the Umbraco CMS. All you would need is Microsoft’s Internet Information Services (IIS) server, where you would host and deploy your website.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">With a plethora of Content Management Systems available today, it becomes very difficult to choose form one of them. As a matter of fact, the CMS that you would choose would also depend on the architecture or the platform where you would deploy your project. Having discussed on the Joomla CMS which is based on PHP and MySql, it is now time to review the <a href="http://www.umbraco.org/" target="_blank">Umbraco</a> CMS that is based on Microsoft’s ASP.NET technology. Well, this one is for the .NET fans. The entire source of the CMS has been written in C# and is available for the developers to download and modify for free. Yes, <a href="http://www.umbraco.org/" target="_blank">Umbraco</a> is open source.</p>
<p style="text-align: justify;">You do not require beforehand knowledge of Microsoft’s .NET framework or C# in particular, to get started with the Umbraco CMS. All you would need is Microsoft’s Internet Information Services (IIS) server, where you would host and deploy your website.</p>
<p style="text-align: justify;">I would like to mention here that Umbraco has particularly laid emphasis on the “ease of use” aspect. Allowing you to insert any page control from a drop down is a huge time saver. Moreover it is a completely open templating system with which designers can create accessible and valid XHTML with their markup left intact. This means that without any extensive know-how of technical parameters, designers can create professional design templates with complete freedom. This segregates the overall logic form the design within the system that is to be developed.</p>
<p style="text-align: justify;">Integration of custom controls is as easy as it gets when it comes to Umbraco. All you would need to do is build your custom control in Visual Studio, copy the “.ascx” and “.dll” files into their appropriate folders in Umbraco and you are done.</p>
<p style="text-align: justify;">One thing that is worthwhile to mention here is the Umbraco forum. If you are new to Umbraco, visiting the forum is the best way to get started. The forum is quite active with both experienced and novice developers sharing their problems, views and opinions. It is quite exhaustive so if you are stuck up with a problem in Umbraco, you might get your clarifications here real quick. Umbraco has recently launched umbraco.tv which is a video based tutorial website that would aid in its documentation and a better understanding of the Umbraco CMS by its users.</p>
<p style="text-align: justify;">The official website of Umbraco claims, “You can do anything” with Umbraco. True to the fact, if you are a C# expert, then you may modify parts of the core which are basically C# (“.cs”) scripts, to suit your custom needs. However if you are a novice, just install and get started!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2008/10/intro-to-umbraco/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

