ASP.NET XML DocumentSource 属性

返回上一级

ASP.NET XML DocumentSource 属性用于设置或返回在 Xml 控件中显示的 XML 文档的路径

语法

<asp:Xml DocumentSource="path" runat="server" />
属性 描述
path 字符串值,规定 XML 文件的位置。该属性可以是相对或绝对路径
相对路径:文件相对于当前页面位置的路径(比如 "~/note.xml")
绝对路径:绝对路径(比如 "C:\xmlnote.xml")

范例

下面的范例设置了 Xml 控件要使用的 XML 文档

<form runat="server">
<asp:Xml id="xml1" runat="server" DocumentSource="note.xml" />
</form>

运行范例 »

在本范例中使用的 XML 文件是 note.xml

返回上一级

ASP.NET 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.