本文介绍了在C#中的Session中添加bool值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我如何在Session ["Permission"]中添加true,因为布尔值为true
how can i add the true in Session["Permission"] as true is bool
推荐答案
Session["Permission"] = true
访问使用此
to access use this
bool permsn=convert.toBoolean(Session["Permission"] )
session["Permission"]=true;
bool b=true;
Session["Permission"]=b.ToString()
然后从会话中获取消息后,请使用bool.parse();
and when retive from session then use bool.parse();
这篇关于在C#中的Session中添加bool值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!