2012年5月3日
摘要: XmlDocument xd = new XmlDocument(); string xmlPath = Server.MapPath("default_menu.xml"); string xmlcon = string.Empty; if (File.Exists(xmlPath)) { StreamReader sr = File.OpenText(xmlPath); xmlcon = sr.ReadToEnd(); } xd.LoadXml(xmlcon); XmlNode xn = xd.SelectSingleNode("Menu"); st 阅读全文
posted @ 2012-05-03 11:12 李菲菲 阅读(97) 评论(0) 推荐(0) 编辑
摘要: using System;using System.IO;using System.Security.Cryptography;using System.Text;using System.Web.Script.Serialization;using System.Xml;using System.Xml.Serialization;using System.Data;using System.Collections.Generic;using System.ComponentModel;using System.Linq;using System.Linq.Expressions;using 阅读全文
posted @ 2012-05-03 11:07 李菲菲 阅读(131) 评论(0) 推荐(0) 编辑