-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap treeview Navigation Control
51 lines (26 loc) · 1.17 KB
/
sitemap treeview Navigation Control
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//web.sitemap
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0">
<siteMap Node url="vártak.aspx" title="Vartak" description="">
<siteMap Node uri="com.aspx" title="Commerce" description=""> <siteMap Node url="bms.aspx" title="BMS" description="" />
<siteMap Node url="bbi.aspx" title="BBI" description="" />
<siteMap Node url="bcom.aspx" title="BCOM" description="" />
</siteMap Node>
<siteMap Node url="sci.aspx" title="Science" description="">
<siteMap Node url="plain.aspx" title="Plain" description="" />
<siteMap Node uri="it.aspx" title="IT" description="" />
<siteMapNode url="cs.aspx" title="CS" description="" /> <siteMap Node url="bt.aspx" title="BT" description="" />
</siteMapNode>
</siteMapNode>
</siteMap>
//vartak.aspx
<asp:Label ID="Label1" runat="server" Text="Welcome to vartak
college"></asp:Label>
<asp:TreeView ID="TreeView1" runat="server"
DataSourceID="sitemapds1">
</asp:TreeView>
<asp:SiteMapPath ID="SiteMapPath1" runat="server">
</asp: SiteMapPath>
<asp:Menu ID="Menu1" runat="server" DataSourceID="sitemapds1">
</asp:Menu>
<asp:SiteMapDataSource ID="sitemapds1" runat="server" />