Goodspeed

导航

07 2005 档案

Class reflection sample
摘要:Reflection.aspx Class reflection sample Class reflection sample Reflection.aspx.cs using System;using System.Data;using System.Configura... 阅读全文

posted @ 2005-07-21 14:18 Goodspeed 阅读(1889) 评论(0) 推荐(0) 编辑

在HttpHandlers (ASHX files)中使用Session
摘要:当你希望从ashx或HttpHandler里访问你的Session时,你必须实现IReadOnlySessionState接口.代码: using System;using System.Web;using System.Web.SessionState;public class DownloadHandler : IHttpHandler, IReadOnlySessionState{ p... 阅读全文

posted @ 2005-07-19 16:57 Goodspeed 阅读(1933) 评论(1) 推荐(0) 编辑

《ASP.net组件设计》PowerORM的完整代码
摘要:using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.W... 阅读全文

posted @ 2005-07-12 09:50 Goodspeed 阅读(1523) 评论(0) 推荐(0) 编辑

错误 3724,无法除去表"xxx",因为它正用于复制。
摘要:在SQL Server 2000 里,你可能在删除表或更新一个表的索引,会收到下面的错误提示:错误 3724,无法除去表"xxx",因为它正用于复制。比较典型的情况是该table曾经用于复制,但是后来又删除了复制处理办法: sp_configure 'allow updates', 1goRECONFIGURE WITH OVERRIDEgoBEGIN TRANSACTIONUPDATE sys... 阅读全文

posted @ 2005-07-02 16:14 Goodspeed 阅读(4521) 评论(1) 推荐(0) 编辑