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

首頁 > 編程 > .NET > 正文

.net中使用xsl文件作為導航菜單的小例子

2024-07-10 13:16:43
字體:
供稿:網(wǎng)友

復制代碼 代碼如下:


<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="testweb.WebForm1" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form runat="server">
    <div>
     <asp:Xml TransformSource="XSLTFile1.xslt" runat="server"></asp:Xml>
    </div>
    </form>
</body>
</html>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace testweb
{
    public partial class WebForm1 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            minanva.DocumentContent = @"<站點導航列表 來訪員工=''>
                                          <站點導航 站點名稱='設計計劃' 站點編號='EPM' 站點鏈接='../NWEPDI.EPM.WEB/../Project/ProjectList.aspx?QueueType=EPM0101' />
                                          <站點導航 站點名稱='設計作業(yè)' 站點編號='DDM' 站點鏈接='../MoEngineer/ProjectMgr.aspx' />
                                          <站點導航 站點名稱='設計流程' 站點編號='DFM' 站點鏈接='../MoFlow/CWorkItemList.aspx?QueueType=DFM0101' />
                                          <站點導航 站點名稱='印務管理' 站點編號='PPM' 站點鏈接='../MoPrint/PrintMgr.aspx?QueueType=PPM0101' />
                                          <站點導航 站點名稱='工時管理' 站點編號='WHM' 站點鏈接='../MoWorkHour/HourMgrPrj.aspx?QueueType=WHM0103' />
                                          <站點導航 站點名稱='電子歸檔' 站點編號='ARC' 站點鏈接='../MoArchieve/ProjectMgr.aspx?QueueType=ARC0101' />
                                          <站點導航 站點名稱='統(tǒng)計報表' 站點編號='SSM' 站點鏈接='../MoReports/ReportView.aspx?QueueType=SSM0101' />
                                          <站點導航 站點名稱='資料管理' 站點編號='DAM' 站點鏈接='../MoDocument/ProjectFileMgr.aspx?QueueType=DAM0101' />
                                          <站點導航 站點名稱='系統(tǒng)管理' 站點編號='DSM' 站點鏈接='../MoAdmin/CommonRuleList.aspx?QueueType=DSM0101' />
                                        </站點導航列表>";
        }
    }
}


<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
  <xsl:output method="xml" indent="yes"/>
  <xsl:template match="http://站點導航列表">
    <div>
      <ul>
        <li>導航</li>
        <xsl:for-each select="站點導航">
          <li>
            <xsl:value-of select="@站點名稱"/>
            <xsl:attribute>
              <xsl:value-of select="@站點編號"/>
            </xsl:attribute>
            <xsl:attribute>
              <xsl:value-of select="@站點鏈接"/>
            </xsl:attribute>
          </li>
        </xsl:for-each>
      </ul>
    </div>
  </xsl:template>
</xsl:stylesheet>

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 资源县| 扶余县| 华容县| 项城市| 闽清县| 土默特右旗| 龙井市| 上饶县| 清苑县| 潞西市| 天峻县| 芮城县| 长岭县| 乐业县| 上林县| 黄龙县| 四会市| 黄石市| 南华县| 田东县| 万源市| 徐水县| 东台市| 晴隆县| 丁青县| 凯里市| 白河县| 汉源县| 平阴县| 长春市| 仪征市| 积石山| 南郑县| 光泽县| 阳泉市| 马鞍山市| 巴林左旗| 南川市| 定结县| 夹江县| 宜丰县|