首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

webserver中施用session

2013-09-06 
webserver中使用session Random rnd new Random()int n rnd.Next(100000, 999999)try{// Session[c

webserver中使用session
 Random rnd = new Random();
            int n = rnd.Next(100000, 999999);
            try
            {
               // Session["code"] = n.ToString();
               //Session.Add("code", n.ToString());
                Session["code"] = "123123";
            }
            catch (Exception e)
            {
                Console.WriteLine(e.ToString());
                return isbool;
            }


session老报“未将对象引用设置到对象实例”?
[解决办法]
[WebMethod(EnableSession = true)]
[解决办法]
有调试没?是走到哪里报的这个错?

热点排行