代码改变世界

随笔档案-2011年3月14日

c#.Net操作XML

2011-03-14 15:07 by smat, 353 阅读, 收藏,
摘要: xml 增 删 改 查xml文件格式<?xml version="1.0"?><dbGuest> <User> <Name uid="d">ew</Name> <City>dsa</City> <Email>eq</Email> </User></dbGuest> //创建XML文件 private void btnCreateXml_Click(object sender, System.EventArgs e) { // 阅读全文

C#程序抓取网页实例

2011-03-14 14:03 by smat, 403 阅读, 收藏,
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Net;using System.IO;using System.Text.RegularExpressions;using System.Collections;namespace CopyHtml{ public partial class Form1 阅读全文