212 } 213 /**//* 214 * 根据指定路径获取节点 215 XmlNode xmlNode = xmlDoc.SelectSingleNode(xmlNodePath) ; 216 //设置节点值 217 if (!(xmlNode==null)) 218 xmlNode.InnerText = xmlNodeValue ;*/ 219 } 220 catch(XmlException xmle) 221 { 222 throw xmle ; 223 } 224 } 225 #endregion 226 227 设置节点的属性值#region 设置节点的属性值 228 /**//// <summary> 229 /// 功能: 230 /// 设置节点的属性值 231 /// </summary> 232 /// <param name="xmlNodePath">节点名称</param> 233 /// <param name="xmlNodeAttribute">属性名称</param> 234 /// <param name="xmlNodeAttributeValue">属性值</param> 235 public void SetXmlNodeAttributeValue(string xmlNodePath,string xmlNodeAttribute,string xmlNodeAttributeValue) 236 { 237 try
上一篇:MS SQL Server 2000系统数据类型
下一篇:关于2.0 中的用户控件编程使用
|