• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

在ASP.NET中显示XML内容(以常见的公告栏为例)

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

之前写过一片类似的文章,被R2仁兄指点了一番,发现里面有问题,所以就重新整理了一个,并调试通过,这个网上类似的也很多,只是自己想整理一下,以后就不用再找了。
1. 公告栏(新闻列表)
newslist.xml 

<?xml version="1.0" encoding="GB2312"?>
<topiclist type="AspCool News">
<topic>
<title>第一条新闻</title>
<href>main.aspx?name=news1</href>
</topic>
<topic>
<title>第二条新闻</title>
<href>main.aspx?name=new2</href>
</topic>
</topiclist>

shownewslist.aspx

<%@ Import Namespace="System"%>
<%@ Page Language="C#" Debug="true" codepage="936"%>
<%@ Import Namespace="System.IO" %>
<%@ Assembly Name="System.Xml" %>
<%@ Import Namespace="System.Xml" %>
<%@ Import Namespace="System.Xml.Xsl" %>
<html>
<head>
<title>
</title>
<script language="c#" runat="server">
public string xslt()
{
StringWriter writer = new StringWriter();
//装入xml对象
XmlDocument xmldoc= new XmlDocument();
xmldoc.Load(Server.MapPath("newslist.xml"));
//装入xsl对象
XslTransform xsldoc = new XslTransform();
xsldoc.Load(Server.MapPath("newslist.xsl"));
//把xml转化成html页面
DocumentNavigator nav= new DocumentNavigator(xmldoc);
xsldoc.Transform(nav,null,writer);
return writer.ToString();
}
</script>
</head>
<body>
<%=xslt()%>
</body></html>

2. 每条新闻的显示同理

3.怎么样新建一条新闻
  news1.xml

<?xml version="1.0" encoding="GB2312"?>
<document>
<title>aspcool news!</title>
<abstract>test news</abstract>
<author>feiying</author>
<content>
<paragraph>The firet test</paragraph>
</content>
</document>    

新建news1.xml的方法

private void btnGetXml_Click(object sender, System.EventArgs e)
  {
    stirng filename=this.txtfilename.Test;
    string title=this.txttitle.Text;
    string abstract=this.txtabstract.Text;
    string author=this.txtauthor.Text;
    string content=this.txtcontent.Text;
   //判断文件是否存在
  if(File.Exists(Server.MapPath(filename+".xml")))
  {
  Response.Write("文件名已经存在,请重选文件名。");
  Response.End() ;
  }
  else
  { 
      //create news1.xml
   System.Xml.XmlTextWriter myWriter=new XmlTextWriter(filename+".xml",null);
  myWriter.WriteProcessingInstruction("xml","version='1.0'");
  myWriter.WriteStartElement("content");
  myWriter.WriteAttributeString("type","whitePaper");
//
   myWriter.WriteStartElement("document");
    myWriter.WriteElementString("title",title);
   myWriter.WriteElementString("abstract",abstract);
   myWriter.WriteElementString("author",author);
   myWriter.WriteElementString("content",content);
  //

   myWriter.WriteEndElement();
  myWriter.Flush();
   myWriter.Close();
  }
}

4.怎么样修改现有的newslist.xml
每增加一条新闻,就要在newslist.xml里加上一条

private void Updatenewslist(string title,string href)
  {
   //add new nodes to newslist.xml
   XmlDocument myDocument=new XmlDocument();     
   myDocument.Load("newslist.xml");
   XmlElement topiclist=(XmlElement)myDocument.GetElementsByTagName("topiclist");
   XmlElement topic=myDocument.CreateElement("topic"); 
   XmlElement title= topic.CreateElement("title");
   title.InnerText=title;
   topic.AppendChild(title);
   xmlElement href=topic.CreateElement("href");
   href.InnerText=href;
   topic.AppendChild(href);
   topiclist.PrependChild(topic);
   myDocument.Save("newslist.xml"); 
  }

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
asp.net读写xml发布时间:2022-07-10
下一篇:
【译】Asp.net core应用在 Kubernetes上内存使用率过高问题分析发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap