Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
IIS服务器(win2003下)自己的虚拟目录中有更多的web应用程序(asp.net 4)。并且属于 oracle 11g 数据库中所有自己的架构和帐户。登录后,所有用户都有一些会话变量(如用户名、shema 名称...等)。我想在运行时获取这些信息用于用户管理。我如何从服务器询问它?
也许你正在寻找这个?
要检索:
string username = Session["Username"];
把东西放在 Session 上:
Session["Username"]="SomeValue";