ASP.NET读取XML文件4种方法

方法一 :使用XML控件

1
2
3
4
5
6
7
8
9
<% @ Page Language="C#"%> 
<html> 
<body> 
<h3><font face="Verdana">读取XML方法一</font></h3> 
<from runat=server> 
<asp:Xml id="xml1" DocumentSource="grade.xml" runat="server" /> 
</from> 
</body> 
</html>

方法二: 使用DOM技术

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<% @ Page Language="C#"%> 
<% @ Import Namespace="System.Xml"%> 
<% @ Import Namespace="System.Xml.Xsl"%> 
<html> 
<script language="C#" runat="server"> 
void Page_Load(Object sender,EventArgs e) 
{ 
XmlDocument doc=new XmlDocument(); 
doc.Load(Server.MapPath("grade.xml")); 
xml1.Document=doc; 
} 
</script> 
<body> 
<h3><font face="Verdana">读取XML方法二</font></h3> 
<from runat=server> 
<asp:Xml id="xml1" runat="server" /> 
</from> 
</body> 
</html>

方法三 :使用DataSet对象

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<% @ Page Language="C#"%> 
<% @ Import Namespace="System.Data"%> 
<% @ Import Namespace="System.Data.OleDb"%> 
<script language="C#" runat="server"> 
void Page_Load(Object sender,EventArgs e) 
{ 
DataSet objDataSet=new DataSet(); 
objDataSet.ReadXml(Server.MapPath("grade.xml")); 
dgEmployees.DataSource=objDataSet.Tables["student"].DefaultView; 
dgEmployees.DataBind(); 
} 
</script> 
<body> 
<h3><font face="Verdana">读取XML方法三</font></h3> 
<asp:DataGrid id="dgEmployees" runat="server" /> 
 
</body> 
</html>

方法四 :按文本方式读取

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
<% @ Page Language="C#"%> 
<% @ Import Namespace="System.Xml"%> 
<html> 
<script language="C#" runat="server"> 
private void Page_Load(Object sender,EventArgs e) 
{ 
XmlTextReader objXMLReader=new XmlTextReader(Server.MapPath("grade.xml")); 
string strNodeResult=""; 
XmlNodeType objNodeType; 
while(objXMLReader.Read()) 
{ 
objNodeType =objXMLReader.NodeType; 
swith(objNodeType) 
{ 
case XmlNodeType.XmlDeclaration: 
//读取XML文件头 
strNodeResult+="XML Declaration:<b>"+objXMLReader.Name+""+objXMLReader.Value+"</b><br/>"; 
break; 
case XmlNodeType.Element: 
//读取标签 
strNodeResult+="Element:<b>"+objXMLReader.Name+"</b><br/>"; 
break; 
case XmlNodeType.Text: 
//读取值 
strNodeResult+="&nbsp;-Value:<b>"+objXMLReader.Value+"</b><br/>"; 
break; 
 
} 
//判断该节点是否有属性 
if(objXMLReader.AttributeCount>0) 
{ //用循环判断完所有节点 
while(objXMLReader.MoveToNextAttibute) 
{ //取标签和值 
strNodeResult+="&nbsp;-Attribute:<b>"+objXMLReader.Name+"</b>&nbsp;value:<b>"+objXMLReader.Value+"</b><br/>"; 
} 
} 
LblFile.Text=strNodeResult; 
} 
} 
</script> 
<body> 
<h3><font face="Verdana">读取XML方法四</font></h3> 
<from runat=server> 
<asp:label id="LblFile" runat="server" /> 
</from> 
</body> 
</html>

版权所有: 为网站而疯狂(Crazy From The Website)-给站长一个五星级的家 转载请注明来源!谢谢~

还不快抢沙发       我也不甘寂寞

添加新的评论 返回»  

表情
icon_wink.gif icon_neutral.gif icon_mad.gif icon_twisted.gif icon_smile.gif icon_eek.gif icon_sad.gif icon_rolleyes.gif icon_razz.gif icon_redface.gif icon_surprised.gif icon_mrgreen.gif icon_lol.gif icon_idea.gif icon_biggrin.gif icon_evil.gif icon_cry.gif icon_cool.gif icon_arrow.gif icon_confused.gif icon_question.gif icon_exclaim.gif 

友情提示:
1、请勿发表色情、违法、商业广告等信息,谢谢。
2、留言想要有头像?请看 “我” 的。