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)
常に true になるので、if をスキップしてください
次のようなものを書くつもりでしたか。
if(Session["user"] != null) { //do something when session is not null } else { //do something when session is null }