明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

asp.net 2.0中使用sitemapDATAsource做頁面導(dǎo)航

[摘要]在ASP.NET 2.0中,沒有專門的頁面導(dǎo)航控件,但可以使用SITEMAPdatasource配和DATALIST來實(shí)現(xiàn)。 SITEMAPDATASOURCE控件中,需要特別的建立一個(gè)web.sitemap的XML文件,該文件中存貯網(wǎng)站的結(jié)構(gòu),比如<?xml version=&quo...

    在ASP.NET 2.0中,沒有專門的頁面導(dǎo)航控件,但可以使用SITEMAPdatasource配和DATALIST來實(shí)現(xiàn)。

    SITEMAPDATASOURCE控件中,需要特別的建立一個(gè)web.sitemap的XML文件,該文件中存貯網(wǎng)站的結(jié)構(gòu),
比如
<?xml version="1.0" encoding="utf-8" ?>

<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >

    <siteMapNode url="default.aspx?id=-1" title="首頁">

            <siteMapNode url="default2.aspx?id=0" title="商品"/>

            <siteMapNode url="default3.aspx?id=1" title="社區(qū)"/>

    </siteMapNode>

</siteMap>
之后,在default.aspx中,寫入代碼:
<%@ Page Language="C#" %>

 

<script runat=server>

 

    protected void Page_Load()

    {

        int index = -1;

        Int32.TryParse(Request.QueryString["id"], out index);

 

        Tabs.SelectedIndex = index;

    }

       

</script>

 

<html xmlns="http://www.w3.org/1999/xhtml" >

<head id="Head1" runat="server">

    <title>Untitled Page</title>

    <style>

        a

        {

            color: #000000;

            text-decoration: none;

        }

       

        .myTab

        {

            background: #6666ff;

            padding: 4px;

        }

 

        .myTabSelected

        {

            background: #ff00ff;

            padding: 4px;

        }

    </style>

 

</head>

<body>

    <form id="form1" runat="server">

    <div>

       

        <table>

        <asp:DataList RepeatDirection=Horizontal ID="Tabs" runat="server" DataSourceID="SiteMapDataSource1">

            <ItemTemplate>

                 <td width="4" height="20" valign="top" nowrap class="myTab">

                   <a href='<%# Eval("Url") %>'><%# Eval("Title") %></a>

                </td>

            </ItemTemplate>

           <SelectedItemTemplate>

                <td width="4" height="20" valign="top" nowrap class="myTabSelected">

                   <a href='<%# Eval("Url") %>'><%# Eval("Title") %></a>

                </td>

           </SelectedItemTemplate>

        </asp:DataList>

        </table>

        <asp:SiteMapDataSource ShowStartingNode=false ID="SiteMapDataSource1" runat="server" />

    </div>

    </form>

</body>

</html>


就可以實(shí)現(xiàn)簡單的頁面導(dǎo)航的效果了