摘要:
很多人在群里问起,如何在类库中的类文件里使用Response,Request,Server,Session几种对象。我这里有如下方式,仅供参考: 首先我们要在类文件里引用using System.Web;using System.Web.SessionState;命名空间,然后是对这种对象的声明: HttpSessionState Session; HttpServerUtility Server; HttpRequest Request; HttpResponse Response; 最后我们可以在构造函数里做如下处理: try { Session = ((System.W... 阅读全文