<?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>code for asp.net &#187; Navigation Controls</title>
	<atom:link href="http://www.codeforasp.net/category/code-for-asp-net/navigation-controls/feed" rel="self" type="application/rss+xml" />
	<link>http://www.codeforasp.net</link>
	<description>More about asp.net ajax silverlight MVC</description>
	<lastBuildDate>Tue, 02 Mar 2010 10:17:59 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>create treeview dynamically in asp.net</title>
		<link>http://www.codeforasp.net/create-treeview-dynamically-in-asp-net.html</link>
		<comments>http://www.codeforasp.net/create-treeview-dynamically-in-asp-net.html#comments</comments>
		<pubDate>Sat, 03 Oct 2009 07:12:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Navigation Controls]]></category>
		<category><![CDATA[adding nodes to treeview dynamically]]></category>
		<category><![CDATA[dynamic treeview in asp.net]]></category>
		<category><![CDATA[populate treeview dynamically]]></category>
		<category><![CDATA[treeview dynamic asp.net]]></category>
		<category><![CDATA[treeview dynamic binding]]></category>
		<category><![CDATA[treeview node text]]></category>
		<category><![CDATA[treeview node value]]></category>
		<category><![CDATA[treeview SelectedNodeChanged]]></category>

		<guid isPermaLink="false">http://www.codeforasp.net/?p=225</guid>
		<description><![CDATA[Step1: Drag Treeview control from Navigation controls in Toolbox
&#60;asp:TreeView ID=&#8221;TreeView1&#8243; runat=&#8221;server&#8221; &#62;
&#60;/asp:TreeView&#62;
Step2: Create Category table and SubCategory tables in sqlserver to display categories data and subcategories data in tree structure.
 Click here to view Category and SubCategory tables


step3: write below function GetCategoriesAndSubcategories in default.aspx.cs and call that function in Treeview load event.
&#60;asp:TreeView ID=&#8221;TreeView1&#8243; runat=&#8221;server&#8221; onload=&#8221;TreeView1_Load&#8221; [...]]]></description>
		<wfw:commentRss>http://www.codeforasp.net/create-treeview-dynamically-in-asp-net.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asp.net Treeview control</title>
		<link>http://www.codeforasp.net/asp-net-treeview-control.html</link>
		<comments>http://www.codeforasp.net/asp-net-treeview-control.html#comments</comments>
		<pubDate>Wed, 30 Sep 2009 10:20:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Navigation Controls]]></category>
		<category><![CDATA[asp.net treeview control]]></category>
		<category><![CDATA[properties of treeview control]]></category>

		<guid isPermaLink="false">http://www.codeforasp.net/?p=220</guid>
		<description><![CDATA[Treeview control is an asp.net web server control used to display hierarchical data tree structure. The treeview control is made up of Treenode objects.

Treeview can add items static or dynamically using database
It can add items at runtime and it can also delete items at runtime
Node text that can be displayed as either selectable text or [...]]]></description>
		<wfw:commentRss>http://www.codeforasp.net/asp-net-treeview-control.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamically create asp.net menu control using C#</title>
		<link>http://www.codeforasp.net/dynamically-create-asp-net-menu-control-using-c.html</link>
		<comments>http://www.codeforasp.net/dynamically-create-asp-net-menu-control-using-c.html#comments</comments>
		<pubDate>Wed, 30 Sep 2009 08:56:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Navigation Controls]]></category>
		<category><![CDATA[asp.net menu control]]></category>
		<category><![CDATA[asp.net menu control database]]></category>
		<category><![CDATA[asp.net menu control design]]></category>
		<category><![CDATA[asp.net menu control dynamic]]></category>
		<category><![CDATA[Dynamically create asp.net menu control using c]]></category>

		<guid isPermaLink="false">http://www.codeforasp.net/?p=216</guid>
		<description><![CDATA[Step1: click below link to view Category table and Subcategory table in sqlserver
Link to Category table and Subcategory table click here



Step2: Drag Menu control from toolbox
&#60;asp:Menu ID=&#8221;Menu1&#8243; runat=&#8221;server&#8221; Orientation=&#8221;Horizontal&#8221;&#62;
&#60;/asp:Menu&#62;
Step3: Write below code in Default.aspx.cs (Page Load event)
using System.Data;
using System.Data.SqlClient;
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
string ConnectionString = &#8220;Data Source=192.168.1.23;Initial Catalog=Purchase;User id=sa;Password=abc&#8221;;
SqlConnection objConn = new SqlConnection(ConnectionString);
string [...]]]></description>
		<wfw:commentRss>http://www.codeforasp.net/dynamically-create-asp-net-menu-control-using-c.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>asp.net menu control example</title>
		<link>http://www.codeforasp.net/asp-net-menu-control-example.html</link>
		<comments>http://www.codeforasp.net/asp-net-menu-control-example.html#comments</comments>
		<pubDate>Wed, 30 Sep 2009 07:37:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Navigation Controls]]></category>
		<category><![CDATA[asp.net menu contol sample]]></category>
		<category><![CDATA[asp.net menu control]]></category>
		<category><![CDATA[asp.net menu control example]]></category>
		<category><![CDATA[asp.net menu demo]]></category>

		<guid isPermaLink="false">http://www.codeforasp.net/?p=212</guid>
		<description><![CDATA[Asp.net menu control display menus both statically and dynamically for asp.net pages. It makes navigation easy for asp.net pages.
The content of the Asp.net Menu control can configure directly in the control or using database data source.
 
Syntax of asp.net menu control
&#60;asp:Menu runat=&#8221;server&#8221; &#62;&#60;/asp:Menu&#62;
Properties of Asp.net Menu Control
 
Orientation: menu control should be render horizontal or [...]]]></description>
		<wfw:commentRss>http://www.codeforasp.net/asp-net-menu-control-example.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
