如何在类文件中声明会话

如何在类文件中声明会话

本文介绍了如何在类文件中声明会话的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在sqldatreader读取sqlcommand和
时需要的类文件中编写登录代码.

I am writing login code in a class file where i need if sqldatreader read the sqlcommand and

if (paswd == dr["password"].ToString()) then i want to store
userId in session like this:
if (paswd == dr["password"].ToString())
{
    Session["userid"]=dr["userid"].ToString();
}


但在课堂上文件会话不起作用.

请任何人帮我怎么做.
在此先感谢


but in class file session is not working.

please any one help me how can i do this.
Thanks in advance

推荐答案

HttpContext.Current.Session["userid"] = dr["userid"].ToString();


这篇关于如何在类文件中声明会话的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 13:02