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.
就像是
if(Session["user"] != null || Session["user"] = null) // 做其他 事情 // 做一些事情
我怎样才能做到这一点
这没有意义
您缺少一个 = 符号,但是
if(Session["user"] != null || Session["user"] == null)
永远是真的,所以跳过 if
你的意思是写这样的东西:
if(Session["user"] != null) { //do something when session is not null } else { //do something when session is null }