摘要:
在C#编程中,除了Method和Property,任何Class都可以有自己的事件(Event)。定义和使用自定义事件的步骤如下: (1)在Class之外定义一个delegate类型,用于确定事件程序的接口 (2)在Class内部,声明一个public event变量,类型为上一步骤定义的delegate类型 (3)在某个Method或者Property内部某处,触发事件 (4)Client程序中... 阅读全文
摘要:
'@转换日期为星期几函数 '@idate为标准日期格式 '@itype为0时表示英文星期几,否则为中文 function showweek(idate,itype) if itype 0 then itype = 1'//防止误输出错 dim inum,nday inum = weekday(idate) if itype = 0 then select case inum case 1... 阅读全文
摘要:
不要让有价值的数据在不能访问的数据库中白白浪费。运用适当的存储、商业智能(business intelligence )和.NET技术给决策者们提供他们需要的信息。 by Rob Ericsson 涉及技术:Microsoft Business Intelligence Platform, SQL Server, SharePoint Portal Server, Commerce Server ... 阅读全文
摘要:
ifIunderstandyoucorrectly,youcaneitherusingSystem.DirectoryServices;DirectoryEntryde=newDirectoryEntry("IIS://LOCALHOST/W3SVC/1/ROOT");strings=(string)de.Properties["Path"].Val... 阅读全文