国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

asp.net站點(diǎn)地圖使用

2019-11-17 04:08:35
字體:
供稿:網(wǎng)友
<!-- /* Font Definitions */ @font-face {font-family:宋體; panose-1:2 1 6 0 3 1 1 1 1 1; mso-font-alt:SimSun; mso-font-charset:134; mso-generic-font-family:auto; mso-font-pitch:variable; mso-font-signature:3 135135232 16 0 262145 0;} @font-face {font-family:新宋體; panose-1:2 1 6 9 3 1 1 1 1 1; mso-font-charset:134; mso-generic-font-family:modern; mso-font-pitch:fixed; mso-font-signature:3 135135232 16 0 262145 0;} @font-face {font-family:"/@宋體"; panose-1:2 1 6 0 3 1 1 1 1 1; mso-font-charset:134; mso-generic-font-family:auto; mso-font-pitch:variable; mso-font-signature:3 135135232 16 0 262145 0;} @font-face {font-family:"/@新宋體"; panose-1:2 1 6 9 3 1 1 1 1 1; mso-font-charset:134; mso-generic-font-family:modern; mso-font-pitch:fixed; mso-font-signature:3 135135232 16 0 262145 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0mm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; mso-pagination:none; font-size:10.5pt; mso-bidi-font-size:12.0pt; font-family:"Times New Roman"; mso-fareast-font-family:宋體; mso-font-kerning:1.0pt;} /* Page Definitions */ @page {mso-page-border-surround-header:no; mso-page-border-surround-footer:no;} @page Section1 {size:595.3pt 841.9pt; margin:72.0pt 90.0pt 72.0pt 90.0pt; mso-header-margin:42.55pt; mso-footer-margin:49.6pt; mso-paper-source:0; layout-grid:15.6pt;} div.Section1 {page:Section1;} -->

asp.net 站點(diǎn)地圖的使用

  

站點(diǎn)地圖文件:

Web.sitemap

  

<? xml version = "1.0 " encoding = "utf-8 "?>

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

  < siteMapNode url = "default.aspx " title = " 首頁(yè) " description = "">

    < siteMapNode url = "Supply.aspx " title = " 產(chǎn)品信息 " description = "" >

      < siteMapNode url = "PRoductdetails.aspx " title = " 產(chǎn)品詳細(xì)信息 " description = "" />

    </ siteMapNode >

    < siteMapNode url = "register.aspx " title = " 新用戶注冊(cè) "/>

    < siteMapNode url = "Demand.aspx " title = " 產(chǎn)品信息 " description = "">

    </ siteMapNode >

    < siteMapNode url = "Projects.aspx " title = " 招投標(biāo)信息 " description = "">

      < siteMapNode url = "DownLoad.aspx " title = " 相關(guān)表格下載 " description = "" />

      < siteMapNode url = "ProjectInfor.aspx " title = " 招投標(biāo)詳細(xì)信息 " description = "" />

    </ siteMapNode >

    < siteMapNode url = "newsfront.aspx " title = " 新聞 " description = "">

      < siteMapNode url = "news_detail.aspx " title = " 行業(yè)資訊詳細(xì)信息 " description = "" />

      < siteMapNode url = "company_details.aspx " title = " 會(huì)員展廳詳細(xì)信息 " description = "" />

      < siteMapNode url = "ManuscriptFront.aspx " title = " 在線投稿 " description = "" />

      < siteMapNode url = "subject_detail.aspx " title = " 專題欄目詳細(xì)信息 " description = "" />

      < siteMapNode url = "expertinterview_detail.aspx " title = " 人物專訪詳細(xì)信息 " description = "" />

    </ siteMapNode >

    < siteMapNode url = "ForeTrain.aspx " title = " 培訓(xùn)咨詢 " description = "">

      < siteMapNode url = "TrainInfor.aspx " title = " 培訓(xùn)詳細(xì)信息 " description = "" />

      < siteMapNode url = "BusiHandBook.aspx " title = " 商務(wù)手冊(cè) " description = "" />

      < siteMapNode url = "Technology.aspx " title = " 技術(shù)咨詢 " description = "">

        < siteMapNode url = "TechInfor.aspx " title = " 技術(shù)信息 " description = ""/>

      </ siteMapNode >

      < siteMapNode url = "Expert.aspx " title = " 專家顧問團(tuán) " description = "" />

    </ siteMapNode >

    < siteMapNode url = "ExhibitFront.aspx " title = " 機(jī)電信息展覽館 " description = "">

      < siteMapNode url = "exhibit_detail.aspx " title = " 會(huì)展詳細(xì)信息 " description = ""/>

    </ siteMapNode >

  </ siteMapNode >

</ siteMap >

  

  

Web.config 配置

  

  

    < siteMap defaultProvider = "XmlSiteMapProvider " enabled = "true ">

      < providers >

        < add name = "XmlSiteMapProvider "

            description = "SiteMap provider which reads in .sitemap XML files. "

            type = "System.Web.XmlSiteMapProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a "

            siteMapFile = "web.sitemap "/>

      </ providers >

    </ siteMap >

  

前臺(tái)代碼:

  

< asp : TreeView ID ="TreeView1" runat ="server" DataSourceID ="SiteMapDataSource1">

            </ asp : TreeView >

        </ div >

        < asp : SiteMapDataSource ID ="SiteMapDataSource1" runat ="server" SiteMapProvider ="XmlSiteMapProvider" /> 
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 濮阳县| 四子王旗| 芷江| 宝坻区| 全南县| 江都市| 临漳县| 廉江市| 无极县| 兴安县| 天水市| 普格县| 天峨县| 武胜县| 阳东县| 黑水县| 莒南县| 博兴县| 新津县| 哈尔滨市| 呼图壁县| 泸水县| 南昌县| 扎鲁特旗| 永新县| 乐昌市| 玛多县| 霍山县| 河源市| 昌宁县| 水富县| 湄潭县| 凤山县| 池州市| 同德县| 同德县| 德江县| 志丹县| 上思县| 瓮安县| 镇平县|