实名认证用户熊川湘 身份证号码430811198506290914

随笔分类 -  XML学习

摘要:<?xml version="1.0" encoding="utf-8"?><!--element, attribute, text, namespace, processing-instruction, comment, and document (root) nodes.--><!-- 不能放在本文的第一行 --><?xml-stylesheet type="text/xsl" href="simple.xsl"?><!-- processing-instr 阅读全文
posted @ 2013-04-26 16:56 浪达短信群发 阅读(281) 评论(0) 推荐(0)
摘要:using System;using System.Web;using System.Collections;using System.Web.Services;using System.Web.Services.Protocols;using System.IO;using System.Xml.Serialization;using System.Text;using System.Collections.Generic;/// <summary>/// WebService 的摘要说明/// </summary>[WebService(Namespace = &q 阅读全文
posted @ 2012-04-06 23:08 浪达短信群发 阅读(6036) 评论(0) 推荐(0)
摘要:int Tnodej = 0;//节点位置临时存储变量 /// <summary> /// 给特定node节点赋值 /// </summary> /// <param name="nodename">要查找的节点名称</param> /// <param name="xn">开始查找的节点源</param> /// <p... 阅读全文
posted @ 2010-04-12 14:30 浪达短信群发 阅读(921) 评论(0) 推荐(0)
摘要:昨天弄网站的时候,有一个自定义配置要放到web.config文件的appSettings节下,在value中包含了双引号,回车换行符(\r\n)等特殊符号。直接写是不行的,需要进行相应转化。具体的转化对应为: [代码] 阅读全文
posted @ 2009-07-27 16:34 浪达短信群发 阅读(252) 评论(0) 推荐(0)
摘要:修改XML文件里节点中的内容: XmlDocument xmlDoc = new XmlDocument(); string path = Server.MapPath("~/xml/shopCityXml/2shopCity.xml"); if (System.IO.File.Exists(path) == true) { ... 阅读全文
posted @ 2009-02-26 11:07 浪达短信群发 阅读(1147) 评论(1) 推荐(0)
摘要:从一个XML里读出来数据,然后更改后在写进另一个XML public void newXml() { DataTable dt = new DataTable(); dt = CommerCityMessageBLL.getThisCommerCityMessage(Convert.ToInt32(Request.QueryStri... 阅读全文
posted @ 2009-02-26 10:56 浪达短信群发 阅读(211) 评论(0) 推荐(0)