当前位置: 首页 > 图文教程 > 网络编程 > ASP > 用asp.net和xml做的新闻更新系统(3)

ASP
ASP下经常用的字符串等函数参考资料
asp下连接数据库 ASP链接数据库字符串大全总结
asp内置对象 ObjectContext 事务管理 详解
asp 内置对象 Application 详解
ASP中 SQL语句 使用方法
ASP 中 Split 函数的实例分析
ASP 中 DateDiff 函数详解 主要实现两日期加减操作
asp 存贮过程 (SQL版asp调用存储过程)
利用ASP实现在线生成电话图片效果脚本附演示
使用ASP记录在线用户的数量的代码
关于ASP生成伪参数技巧 简洁实用的伪(僞)参数
asp 关键词字符串分割如何实现方法
用ASP编写的加密和解密类
ASP之处理用Javascript动态添加的表单元素数据的代码
asp下最常用的19个基本技巧
一些Asp技巧和实用解决方法
asp实现一个统计当前在线用户的解决方案
asp下的一个很简单的验证码程序
asp又一个分页的代码例子
asp实现防止从外部提交数据的三种方法

ASP 中的 用asp.net和xml做的新闻更新系统(3)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 121 ::
收藏到网摘: n/a

      
  作者:飞鹰 版权归www.aspcool.com所有,转载时请保留此信息。
  
  最后,大家来看一下最负责的一个页面,这个页面的作用就是用来建立新的xml数据。
  manage.aspx
  
  <%@ Import Namespace="System.Xml.Xsl" %>
  <%@ Import Namespace="System.Xml" %>
  <%@ Assembly Name="System.Xml" %>
  <%@ Import Namespace="System.IO" %>
  <%@ Page Language="C#" Debug="true" codepage="936"%>
  <%@ Import Namespace="System"%>
  
  <HTML>
   <HEAD>
   <script language="C#" runat="server">
  
  public void Button1_Click(object sender, System.EventArgs e)
   {
   //判断文件是否存在
   if(File.Exists(Server.MapPath(TextBox1.Text +".xml")))
   {
   Response.Write("文件名已经存在,请重选文件名。");
   Response.End() ;
  
   }
   else
   {
  
   XmlNode currNode;
   XmlDocument xmldoc = new XmlDocument();
   xmldoc.Load(Server.MapPath("contents.xml"));
  
   string InsStr="<topic><title>"+TextBox2.Text+"</title><href>main.aspx?name="+TextBox1.Text+"</href></topic>";
   XmlDocumentFragment docFrag = xmldoc.CreateDocumentFragment();
   docFrag.InnerXml = InsStr;
  
   currNode = xmldoc.DocumentElement;
   currNode.InsertAfter(docFrag, currNode.LastChild);
   //save the output to a file
   xmldoc.Save (Server.MapPath("contents.xml"));
  
   //把TextBox5中的文件换成符合xml格式的内容。
   string xmlfile =TextBox5.Text.Replace("&","&");
   xmlfile = xmlfile.Replace("<","<");
   xmlfile = xmlfile.Replace(">",">");
   xmlfile = xmlfile.Replace( @"""""",""");
   xmlfile = xmlfile.Replace("'","'");
   xmlfile = xmlfile.Replace ("\n","</paragraph><paragraph>");
   //把数据写入新建的xml文件中去。
   XmlDocument doc = new XmlDocument();
   doc.LoadXml ("<?xml version='1.0' encoding='GB2312'?><document><title>"+TextBox2.Text +"</title><abstract>"+TextBox4.Text +"</abstract><author>"+TextBox3.Text +"</author><content><paragraph>"+xmlfile+"</paragraph></content></document>");
   doc.Save (Server.MapPath(TextBox1.Text +".xml"));
   Response.Write("You hava input the article!");
   TextBox1.Text="";
   TextBox2.Text="";
   TextBox3.Text="";
   TextBox4.Text="";
   TextBox5.Text="";
  
   }
  
  
  
  
   //向目录文件中写数据
  
   }
   public void Button2_Click(object sender, System.EventArgs e)
   {}
   </script>
   <meta content="Internet Explorer 5.0" name=vs_targetSchema>
   <meta content="Microsoft Visual Studio 7.0" name=GENERATOR>
   <meta content=C# name=CODE_LANGUAGE>
   </HEAD>
   <body MS_POSITIONING="GridLayout">
   <form runat="server">
   <FONT face=宋体>
   <asp:label id=Label1 style="Z-INDEX: 100; LEFT: 230px; POSITION: absolute; TOP: 27px" runat="server" Height="28px" Width="156px">
   asp酷技术资讯网网站内容发布系统
   </asp:label>
   <asp:label id=Label2 style="Z-INDEX: "