<?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>Techelp &#187; CMS</title>
	<atom:link href="http://techelp.in/thome/category/cms/feed/" rel="self" type="application/rss+xml" />
	<link>http://techelp.in/thome</link>
	<description></description>
	<lastBuildDate>Wed, 08 Feb 2012 11:02:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Ektron Category search</title>
		<link>http://techelp.in/thome/2009/09/11/ektron-category-search/</link>
		<comments>http://techelp.in/thome/2009/09/11/ektron-category-search/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 18:14:50 +0000</pubDate>
		<dc:creator>sharath</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Ektron]]></category>

		<guid isPermaLink="false">http://techelp.in/msblog/?p=46</guid>
		<description><![CDATA[What do you think of this post?Awesome&#160;(0) Interesting&#160;(0) Useful&#160;(0) Boring&#160;(0) Sucks&#160;(1)]]></description>
			<content:encoded><![CDATA[<pre class="brush: vb; title: ; notranslate">
Dim search As SearchManager = New SearchManager()
Dim requestData As SearchRequestData = New SearchRequestData()

requestData.LanguageID = 1033
requestData.SearchType = WebSearchType.none
requestData.SearchText = &quot; (@TaxCategory '\\MapCategory') &quot; '&quot;( @contenttype = 1 ) and  (  @docTitle Tech* OR  @Contents computer*  ) And (  @TaxCategory '\MapCategory' OR '\Restaurant' OR '\Ektron Products&quot;
'requestData.SearchText = &quot;( @contenttype = 1 ) and  (  @docTitle Ek* OR  @Contents Ek*  ) And OR @TaxCategory '\Furniture')(  @TaxCategory '\Continents' OR '\Stores' OR '\Chemicals' OR '\Ektron Tech' ) and (    @taxonomyenabled = 1 ) and ( @contentlanguage = 1033 ) and ( @searchable = 1 )&quot;
requestData.FolderID = 0
Dim resultCount As Integer
' Dim result() As SearchResponseData = search.Search(requestD
Dim result() As SearchResponseData = search.Search(requestData, HttpContext.Current, resultCount)

GridView1.DataSource = result
GridView1.DataBind()
</pre>

<div id='reaction_buttons_post185' class='reaction_buttons'>
<div class="reaction_buttons_tagline">What do you think of this post?</div><a class='reaction_button reaction_button_Awesome_count' href="javascript:reaction_buttons_increment_button_ajax('185', 'Awesome');">Awesome&nbsp;<span class='count' style='display: none;'>(<span class='count_number'>0</span>)</span></a> <a class='reaction_button reaction_button_Interesting_count' href="javascript:reaction_buttons_increment_button_ajax('185', 'Interesting');">Interesting&nbsp;<span class='count' style='display: none;'>(<span class='count_number'>0</span>)</span></a> <a class='reaction_button reaction_button_Useful_count' href="javascript:reaction_buttons_increment_button_ajax('185', 'Useful');">Useful&nbsp;<span class='count' style='display: none;'>(<span class='count_number'>0</span>)</span></a> <a class='reaction_button reaction_button_Boring_count' href="javascript:reaction_buttons_increment_button_ajax('185', 'Boring');">Boring&nbsp;<span class='count' style='display: none;'>(<span class='count_number'>0</span>)</span></a> <a class='reaction_button reaction_button_Sucks_count' href="javascript:reaction_buttons_increment_button_ajax('185', 'Sucks');">Sucks&nbsp;<span class='count' style='display: none;'>(<span class='count_number'>1</span>)</span></a> </div>
]]></content:encoded>
			<wfw:commentRss>http://techelp.in/thome/2009/09/11/ektron-category-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ektron Collection Control in Code behind</title>
		<link>http://techelp.in/thome/2009/08/20/ektron-collection-control-in-code-behind/</link>
		<comments>http://techelp.in/thome/2009/08/20/ektron-collection-control-in-code-behind/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 16:43:41 +0000</pubDate>
		<dc:creator>sharath</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Ektron]]></category>

		<guid isPermaLink="false">http://techelp.in/msblog/?p=38</guid>
		<description><![CDATA[What do you think of this post?Awesome&#160;(0) Interesting&#160;(0) Useful&#160;(0) Boring&#160;(0) Sucks&#160;(1)]]></description>
			<content:encoded><![CDATA[<pre class="brush: csharp; title: ; notranslate">

// This code is useful for creating Ektron's Collection control in Code behind of aspx/ascx

Ektron.Cms.Controls.Collection colCtrl = new Ektron.Cms.Controls.Collection();

colCtrl.DefaultCollectionID = 12; // Check this id from the Work area.

colCtrl.WrapTag = &quot;div&quot;;

colCtrl.Visible = true;

colCtrl.DisplayXslt = &quot;ecmTeaser&quot;; //builtin Style

colCtrl.Page = this.Page;

XslCompiledTransform docXsl = new XslCompiledTransform();// System.Xml.Xsl

StringWriter transform = new StringWriter(); //System.IO;

docXsl.Load(Server.MapPath(&quot;xslt\\list.xslt&quot;));

docXsl.Transform(colCtrl.XmlDoc, null, transform);

colCtrl.Text = transform.ToString();

pn.Controls.Add(colCtrl);
</pre>
<pre class="brush: xml; title: ; notranslate">

//@@@@@@@@@@@@@ XSLT snippet  @@@@@@@@@@@@@@@@

&lt;?xml version=&quot;1.0&quot; encoding=&quot;iso-8859-1&quot;?&gt;

&lt;xsl:stylesheet version=&quot;1.0&quot; xmlns:xsl=&quot;&lt;a href=&quot;http://www.w3.org/1999/XSL/Transform&quot;&gt;http://www.w3.org/1999/XSL/Transform&lt;/a&gt;&quot;&gt;

&lt;xsl:template match=&quot;/&quot;&gt;

&lt;ul&gt;

&lt;xsl:for-each select=&quot;Collection/Content&quot;&gt;

&lt;li&gt;

&lt;a&gt;

&lt;xsl:attribute name=&quot;href&quot;&gt;

&lt;xsl:value-of select=&quot;QuickLink&quot;/&gt;

&lt;/xsl:attribute&gt;

&lt;xsl:value-of select=&quot;Title&quot;/&gt;

&lt;/a&gt;

&lt;p  &gt;

&lt;xsl:value-of select=&quot;&quot; /&gt;

&lt;/p&gt;

&lt;/li&gt;

&lt;/xsl:for-each&gt;

&lt;/ul&gt;

&lt;/xsl:template&gt;

&lt;/xsl:stylesheet&gt;

//@@@@@@@@@@@@@ XSLT snippet ENDS @@@@@@@@@@@@@@@@
</pre>

<div id='reaction_buttons_post183' class='reaction_buttons'>
<div class="reaction_buttons_tagline">What do you think of this post?</div><a class='reaction_button reaction_button_Awesome_count' href="javascript:reaction_buttons_increment_button_ajax('183', 'Awesome');">Awesome&nbsp;<span class='count' style='display: none;'>(<span class='count_number'>0</span>)</span></a> <a class='reaction_button reaction_button_Interesting_count' href="javascript:reaction_buttons_increment_button_ajax('183', 'Interesting');">Interesting&nbsp;<span class='count' style='display: none;'>(<span class='count_number'>0</span>)</span></a> <a class='reaction_button reaction_button_Useful_count' href="javascript:reaction_buttons_increment_button_ajax('183', 'Useful');">Useful&nbsp;<span class='count' style='display: none;'>(<span class='count_number'>0</span>)</span></a> <a class='reaction_button reaction_button_Boring_count' href="javascript:reaction_buttons_increment_button_ajax('183', 'Boring');">Boring&nbsp;<span class='count' style='display: none;'>(<span class='count_number'>0</span>)</span></a> <a class='reaction_button reaction_button_Sucks_count' href="javascript:reaction_buttons_increment_button_ajax('183', 'Sucks');">Sucks&nbsp;<span class='count' style='display: none;'>(<span class='count_number'>1</span>)</span></a> </div>
]]></content:encoded>
			<wfw:commentRss>http://techelp.in/thome/2009/08/20/ektron-collection-control-in-code-behind/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

