<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for www.SharePoint247.com</title>
	<atom:link href="http://sharepoint247.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://sharepoint247.com</link>
	<description>Mostly about Sharepoint stuff</description>
	<lastBuildDate>Sun, 25 Dec 2011 04:54:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>Comment on Sharepoint 2010 event handler to create subsites by Kenny Bright</title>
		<link>http://sharepoint247.com/sharepoint2010/sharepoint-2010-event-handler-to-create-subsites/#comment-148</link>
		<dc:creator>Kenny Bright</dc:creator>
		<pubDate>Sun, 25 Dec 2011 04:54:50 +0000</pubDate>
		<guid isPermaLink="false">http://sharepoint247.com/sharepoint2010/sharepoint-2010-event-handler-to-create-subsites/#comment-148</guid>
		<description>I was just playing around and found your site. I wrote a a sample client program using client object model that can find the webtemplate id of any site (limited by sites the Client object model will allow you to browse). Thanks for sharing your 

p.s. - replace  with your site.

sample.using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.SharePoint;
using Microsoft.SharePoint.Client;


namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            ClientContext ctx = new ClientContext(&quot;http://&quot;);
            Web web = ctx.Web;
     
           WebTemplateCollection coll = web.GetAvailableWebTemplates(1033, false);
           IEnumerable result = ctx.LoadQuery(coll.Include(o =&gt; o.Id, o =&gt; o.Description, o =&gt; o.Name));
           ctx.ExecuteQuery();

           foreach (WebTemplate item in result)
           {
               Console.WriteLine(&quot;Item Id:{0}\n Description:{1}\n Name:{2}\n &quot;, item.Id, item.Description, item.Name);
               
           }             

         

            Console.ReadLine();
            Console.WriteLine(&quot;press any key to continue....&quot;);
        }
    }
}</description>
		<content:encoded><![CDATA[<p>I was just playing around and found your site. I wrote a a sample client program using client object model that can find the webtemplate id of any site (limited by sites the Client object model will allow you to browse). Thanks for sharing your </p>
<p>p.s. &#8211; replace  with your site.</p>
<p>sample.using System;<br />
using System.Collections.Generic;<br />
using System.Linq;<br />
using System.Text;<br />
using Microsoft.SharePoint;<br />
using Microsoft.SharePoint.Client;</p>
<p>namespace ConsoleApplication1<br />
{<br />
    class Program<br />
    {<br />
        static void Main(string[] args)<br />
        {<br />
            ClientContext ctx = new ClientContext(&#8220;http://&#8221;);<br />
            Web web = ctx.Web;</p>
<p>           WebTemplateCollection coll = web.GetAvailableWebTemplates(1033, false);<br />
           IEnumerable result = ctx.LoadQuery(coll.Include(o =&gt; o.Id, o =&gt; o.Description, o =&gt; o.Name));<br />
           ctx.ExecuteQuery();</p>
<p>           foreach (WebTemplate item in result)<br />
           {<br />
               Console.WriteLine(&#8220;Item Id:{0}\n Description:{1}\n Name:{2}\n &#8220;, item.Id, item.Description, item.Name);</p>
<p>           }             </p>
<p>            Console.ReadLine();<br />
            Console.WriteLine(&#8220;press any key to continue&#8230;.&#8221;);<br />
        }<br />
    }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sharepoint 2010 Subsites webpart by Arild Aarnes</title>
		<link>http://sharepoint247.com/sharepoint2010/sharepoint-2010-subsites-webpart/#comment-145</link>
		<dc:creator>Arild Aarnes</dc:creator>
		<pubDate>Fri, 23 Dec 2011 14:21:56 +0000</pubDate>
		<guid isPermaLink="false">http://sharepoint247.com/?p=77#comment-145</guid>
		<description>Hi, if you deploy the webpart from the article at http://sharepoint247.com/sharepoint2010/subsites-webpart-for-office-365/ you will be able to deploy it via the solution gallery. The one you downloaded is not developed as a sandboxed solution and will not delpy via the soltuion gallery.</description>
		<content:encoded><![CDATA[<p>Hi, if you deploy the webpart from the article at <a href="http://sharepoint247.com/sharepoint2010/subsites-webpart-for-office-365/" rel="nofollow">http://sharepoint247.com/sharepoint2010/subsites-webpart-for-office-365/</a> you will be able to deploy it via the solution gallery. The one you downloaded is not developed as a sandboxed solution and will not delpy via the soltuion gallery.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sharepoint 2010 Subsites webpart by Daniel</title>
		<link>http://sharepoint247.com/sharepoint2010/sharepoint-2010-subsites-webpart/#comment-144</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Thu, 22 Dec 2011 16:46:50 +0000</pubDate>
		<guid isPermaLink="false">http://sharepoint247.com/?p=77#comment-144</guid>
		<description>Hi

For expediency I simply tried install via the solution gallery


This solution contains invalid markup or elements that cannot be deployed as part of a sandboxed solution. Solution manifest for solution &#039;5758fde1-f281-4a43-9682-ac1203f38632&#039; failed validation, file manifest.xml, line 10, character 4: The element &#039;Solution&#039; in namespace &#039;http://schemas.microsoft.com/sharepoint/&#039; has invalid child element &#039;TemplateFiles&#039; in namespace &#039;http://schemas.microsoft.com/sharepoint/&#039;. List of possible elements expected: &#039;FeatureManifests, ActivationDependencies&#039; in namespace &#039;http://schemas.microsoft.com/sharepoint/&#039;. 

I guess I need to follow the install instructions via powershell and stsadm</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>For expediency I simply tried install via the solution gallery</p>
<p>This solution contains invalid markup or elements that cannot be deployed as part of a sandboxed solution. Solution manifest for solution &#8217;5758fde1-f281-4a43-9682-ac1203f38632&#8242; failed validation, file manifest.xml, line 10, character 4: The element &#8216;Solution&#8217; in namespace &#8216;<a href="http://schemas.microsoft.com/sharepoint/" rel="nofollow">http://schemas.microsoft.com/sharepoint/</a>&#8216; has invalid child element &#8216;TemplateFiles&#8217; in namespace &#8216;<a href="http://schemas.microsoft.com/sharepoint/&#039;" rel="nofollow">http://schemas.microsoft.com/sharepoint/&#039;</a>. List of possible elements expected: &#8216;FeatureManifests, ActivationDependencies&#8217; in namespace &#8216;<a href="http://schemas.microsoft.com/sharepoint/&#039;" rel="nofollow">http://schemas.microsoft.com/sharepoint/&#039;</a>. </p>
<p>I guess I need to follow the install instructions via powershell and stsadm</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sharepoint 2010 event handler to create subsites by Sagar</title>
		<link>http://sharepoint247.com/sharepoint2010/sharepoint-2010-event-handler-to-create-subsites/#comment-143</link>
		<dc:creator>Sagar</dc:creator>
		<pubDate>Wed, 30 Nov 2011 21:45:35 +0000</pubDate>
		<guid isPermaLink="false">http://sharepoint247.com/sharepoint2010/sharepoint-2010-event-handler-to-create-subsites/#comment-143</guid>
		<description>Thanks you so much !!</description>
		<content:encoded><![CDATA[<p>Thanks you so much !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sharepoint 2010 event handler to create subsites by Eric</title>
		<link>http://sharepoint247.com/sharepoint2010/sharepoint-2010-event-handler-to-create-subsites/#comment-141</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Thu, 17 Nov 2011 17:45:15 +0000</pubDate>
		<guid isPermaLink="false">http://sharepoint247.com/sharepoint2010/sharepoint-2010-event-handler-to-create-subsites/#comment-141</guid>
		<description>You&#039;re brilliant dude.

Can&#039;t overstate how much I love when you&#039;re looking for a solution to a problem and find a guide where everything works 100% (at least for me it did). 

Great job!</description>
		<content:encoded><![CDATA[<p>You&#8217;re brilliant dude.</p>
<p>Can&#8217;t overstate how much I love when you&#8217;re looking for a solution to a problem and find a guide where everything works 100% (at least for me it did). </p>
<p>Great job!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sharepoint 2010 Subsites webpart by Kalona</title>
		<link>http://sharepoint247.com/sharepoint2010/sharepoint-2010-subsites-webpart/#comment-138</link>
		<dc:creator>Kalona</dc:creator>
		<pubDate>Wed, 19 Oct 2011 12:37:03 +0000</pubDate>
		<guid isPermaLink="false">http://sharepoint247.com/?p=77#comment-138</guid>
		<description>Awesome thanks, have it working like a charm in my master page (needed separate sub site nav to the quicklaunch)

Just got to work out how to style it now!

Thanks again
K</description>
		<content:encoded><![CDATA[<p>Awesome thanks, have it working like a charm in my master page (needed separate sub site nav to the quicklaunch)</p>
<p>Just got to work out how to style it now!</p>
<p>Thanks again<br />
K</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sharepoint 2010 event handler to create subsites by Arild Aarnes</title>
		<link>http://sharepoint247.com/sharepoint2010/sharepoint-2010-event-handler-to-create-subsites/#comment-136</link>
		<dc:creator>Arild Aarnes</dc:creator>
		<pubDate>Fri, 23 Sep 2011 08:57:35 +0000</pubDate>
		<guid isPermaLink="false">http://sharepoint247.com/sharepoint2010/sharepoint-2010-event-handler-to-create-subsites/#comment-136</guid>
		<description>You would have to do the confirmation before the event handler executes. You cannot show a user dialog from the event handler.
You would have to edit the New Item form for the list and use javascript to ask confirmation from the user before actually creating the item.
If you are running Sharepoint 2010 Enterprise you can easily replace the built-in form with a Infopath form and create the confirmation dialog there, if not you could edit the New Item form for the list in Sharepoint Designer.</description>
		<content:encoded><![CDATA[<p>You would have to do the confirmation before the event handler executes. You cannot show a user dialog from the event handler.<br />
You would have to edit the New Item form for the list and use javascript to ask confirmation from the user before actually creating the item.<br />
If you are running Sharepoint 2010 Enterprise you can easily replace the built-in form with a Infopath form and create the confirmation dialog there, if not you could edit the New Item form for the list in Sharepoint Designer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sharepoint 2010 event handler to create subsites by Satya</title>
		<link>http://sharepoint247.com/sharepoint2010/sharepoint-2010-event-handler-to-create-subsites/#comment-128</link>
		<dc:creator>Satya</dc:creator>
		<pubDate>Fri, 12 Aug 2011 03:52:40 +0000</pubDate>
		<guid isPermaLink="false">http://sharepoint247.com/sharepoint2010/sharepoint-2010-event-handler-to-create-subsites/#comment-128</guid>
		<description>I need a confirmation before creating a subsite (ex. a popup dailogue (yes/No)....Is there any way to do this??</description>
		<content:encoded><![CDATA[<p>I need a confirmation before creating a subsite (ex. a popup dailogue (yes/No)&#8230;.Is there any way to do this??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sharepoint 2010 event handler to create subsites by Satya</title>
		<link>http://sharepoint247.com/sharepoint2010/sharepoint-2010-event-handler-to-create-subsites/#comment-127</link>
		<dc:creator>Satya</dc:creator>
		<pubDate>Fri, 12 Aug 2011 03:50:54 +0000</pubDate>
		<guid isPermaLink="false">http://sharepoint247.com/sharepoint2010/sharepoint-2010-event-handler-to-create-subsites/#comment-127</guid>
		<description>Awesome, Same thing i am looking for... Thanks a lot...</description>
		<content:encoded><![CDATA[<p>Awesome, Same thing i am looking for&#8230; Thanks a lot&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sharepoint 2010 Subsites webpart by Arild Aarnes</title>
		<link>http://sharepoint247.com/sharepoint2010/sharepoint-2010-subsites-webpart/#comment-124</link>
		<dc:creator>Arild Aarnes</dc:creator>
		<pubDate>Thu, 04 Aug 2011 10:56:03 +0000</pubDate>
		<guid isPermaLink="false">http://sharepoint247.com/?p=77#comment-124</guid>
		<description>The webpart is installed as a feature. Check Site Collection Features under Site Settings and make sure the feature is activated.</description>
		<content:encoded><![CDATA[<p>The webpart is installed as a feature. Check Site Collection Features under Site Settings and make sure the feature is activated.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

