继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

在类别无法直接使用的一些对象或方法

慕婉清0083722
关注TA
已关注
手记 322
粉丝 72
获赞 277

一些对象或是方法,如Session, Response,Server等等,无法在类别中直接打,是因为没有在类别中引用它们的名称空间。这个名称空间(namespace):System.Web。另外它们正确的写为HttpContext.Current.Session,HttpContext.Current.Response 和HttpContext.Current.Server。

参考:  

代码

using System;
using System.Web;

/// <summary>
/// Summary description for CodeDemo
/// </summary>
public class CodeDemo
{
    public CodeDemo()
    {
        //
        // TODO: Add constructor logic here
        //
    }

    //下面列举了几个对象与方法
    public void t()
    {
        HttpContext.Current.Session["mykey"] = "Session content";
        HttpContext.Current.Response.Write("Write content.");
        HttpContext.Current.Server.MapPath(@"z:\...\"); 
    }
}

 

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP