摘要: protectedvoid Page_Load(object sender, EventArgs e) { ((Button)UcA1.FindControl("Button1")).Click +=new EventHandler(PMS_PageA_Click); } void PMS_PageA_Click(object sender, EventArgs e) { UcA1.Label1Text = TextBox1.Text; } 阅读全文
posted @ 2012-01-06 17:59 甜菜波波 阅读(120) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Web;using System.Data.OleDb;using System.Data.SqlClient;using System.Xml;namespace ClassLibrary1{ public class complete:IHttpModule { public void Dispose() { } public void Init(HttpApplication context) { c 阅读全文
posted @ 2012-01-06 17:39 甜菜波波 阅读(231) 评论(0) 推荐(0) 编辑
摘要: .Net那点事儿系列:System.IO之windows文件操作System.IO系列目录1.Windows文件目录处理2.Stream 以及 StreamReader和StreamWriter3.压缩文件4.System.IO之内存映射文件共享内存5.System.IO系列:局域网内多线程使用命名管道在进程之间通信实例 System.IO之使用管道在进程间通信 (System.IO.Pipes使用)6.独立存储区7.端口在.Net中处理系统文件相关的几个类分别是File、Directory、FileInfo、DirectoryInfo、DriveInfo、FileSystemWatcher。 阅读全文
posted @ 2012-01-06 11:42 甜菜波波 阅读(167) 评论(0) 推荐(0) 编辑