摘要:
using System;namespace DelegateSample{ public delegate void PrintCallback(int number); public class Printer{ //委托定义 private PrintCallback _print; //委托将要依附的属性 public... 阅读全文
posted @ 2006-06-26 10:51
meil
阅读(515)评论(0)推荐(0)
编辑
摘要:
什么是Web User Control如果你记得Microsoft公司先前在组建开发上的尝试,你一定很熟悉ActiveX控件或者ASP包含文件。这些控件和引用文件可以实现功能的分离和重用。ASP.NET Web User Control(网络用户控件)就是它们最新的成员。一个网络用户控件(Web User Control)就是一个独立的实体,它可以在其他的元素(elements)如Web窗体 (W... 阅读全文
posted @ 2006-06-22 22:00
meil
阅读(1012)评论(0)推荐(0)
编辑