<?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 on: Asp.Net Tree DropdownList &amp; ListBox</title>
	<atom:link href="http://www.clientsideasp.net/2009/03/27/aspnet-tree-dropdownlist-listbox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.clientsideasp.net/2009/03/27/aspnet-tree-dropdownlist-listbox/</link>
	<description>.NET &#124; AJAX &#124; UMBRACO&#124; PHP &#124; SQL &#124; FACEBOOK &#124; WEB 2.0</description>
	<pubDate>Sun, 05 Feb 2012 01:12:25 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kredi Kart Borcu Taksitlendirme</title>
		<link>http://www.clientsideasp.net/2009/03/27/aspnet-tree-dropdownlist-listbox/#comment-154</link>
		<dc:creator>Kredi Kart Borcu Taksitlendirme</dc:creator>
		<pubDate>Fri, 18 Feb 2011 05:50:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=27#comment-154</guid>
		<description>This blog was unbelievably helpful. Your the man. lol :)</description>
		<content:encoded><![CDATA[<p>This blog was unbelievably helpful. Your the man. lol :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yasser</title>
		<link>http://www.clientsideasp.net/2009/03/27/aspnet-tree-dropdownlist-listbox/#comment-130</link>
		<dc:creator>Yasser</dc:creator>
		<pubDate>Sat, 15 May 2010 10:07:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=27#comment-130</guid>
		<description>Dear Sir,
thanks alot for your great post but i have a question which how can i allow only the last level of tree to be selected from user (i want to allow user to select last level )
thanks alot and waiting your replay sir</description>
		<content:encoded><![CDATA[<p>Dear Sir,<br />
thanks alot for your great post but i have a question which how can i allow only the last level of tree to be selected from user (i want to allow user to select last level )<br />
thanks alot and waiting your replay sir</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: subramaniyan</title>
		<link>http://www.clientsideasp.net/2009/03/27/aspnet-tree-dropdownlist-listbox/#comment-125</link>
		<dc:creator>subramaniyan</dc:creator>
		<pubDate>Mon, 22 Mar 2010 06:55:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=27#comment-125</guid>
		<description>Thank You Very much for ur solutions! You have to helped to solve my big issues which i am searching for 3 days..Code works perfect!

Thanks a lot!</description>
		<content:encoded><![CDATA[<p>Thank You Very much for ur solutions! You have to helped to solve my big issues which i am searching for 3 days..Code works perfect!</p>
<p>Thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Al</title>
		<link>http://www.clientsideasp.net/2009/03/27/aspnet-tree-dropdownlist-listbox/#comment-120</link>
		<dc:creator>Al</dc:creator>
		<pubDate>Wed, 24 Feb 2010 16:22:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=27#comment-120</guid>
		<description>How did you call the RecursiveFillTree function?</description>
		<content:encoded><![CDATA[<p>How did you call the RecursiveFillTree function?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anz</title>
		<link>http://www.clientsideasp.net/2009/03/27/aspnet-tree-dropdownlist-listbox/#comment-45</link>
		<dc:creator>Anz</dc:creator>
		<pubDate>Wed, 17 Jun 2009 19:26:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=27#comment-45</guid>
		<description>Sorry I don't have any experience with MS Access.. Please post this question in some MS Access forums</description>
		<content:encoded><![CDATA[<p>Sorry I don&#8217;t have any experience with MS Access.. Please post this question in some MS Access forums</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: B A</title>
		<link>http://www.clientsideasp.net/2009/03/27/aspnet-tree-dropdownlist-listbox/#comment-39</link>
		<dc:creator>B A</dc:creator>
		<pubDate>Sat, 30 May 2009 21:43:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.clientsideasp.net/?p=27#comment-39</guid>
		<description>so. how can i to make with access database


/*** STORED PROCEDURE 2 ***/
GO
CREATE PROCEDURE [dbo].[usp_TreeNode_select] 
	@TreeNodeID		INT
AS
BEGIN
	SET NOCOUNT ON;

	BEGIN
		SELECT TreeNodeID
			, ISNULL(ParentNodeID, 0) ParentNodeID
			, Title
		FROM [dbo].[TreeNode]
		WHERE (@TreeNodeID = 0 OR TreeNodeID = @TreeNodeID)
		ORDER BY ParentNodeID, TreeNodeID
	END
END</description>
		<content:encoded><![CDATA[<p>so. how can i to make with access database</p>
<p>/*** STORED PROCEDURE 2 ***/<br />
GO<br />
CREATE PROCEDURE [dbo].[usp_TreeNode_select]<br />
	@TreeNodeID		INT<br />
AS<br />
BEGIN<br />
	SET NOCOUNT ON;</p>
<p>	BEGIN<br />
		SELECT TreeNodeID<br />
			, ISNULL(ParentNodeID, 0) ParentNodeID<br />
			, Title<br />
		FROM [dbo].[TreeNode]<br />
		WHERE (@TreeNodeID = 0 OR TreeNodeID = @TreeNodeID)<br />
		ORDER BY ParentNodeID, TreeNodeID<br />
	END<br />
END</p>
]]></content:encoded>
	</item>
</channel>
</rss>

