还想问你个问题,我怎么把刚刚LogState变成全局类? Public Class LogState 然后再另一个类内调用它?
发布网友
发布时间:2022-11-28 00:54
我来回答
共2个回答
热心网友
时间:2023-10-19 20:20
c#里是用静态类,VB 不要用类用模块,
Namespace NetworkWeb
Public Mole LogState
Public RedirectUrl As String="Login.aspx"
Public Function JudgeLogStat() As Boolean
Dim temp =HttpContext.Current.Session("IsLogged")
If Not IsNothing( temp) Then
Return CBool(temp)
End If
Return False
End Function
End Mole
End Namespace
追问
那在另一个类内怎么调用LogState?如下面
追答导入 NetworkWeb 这个命名空间
或者用
NetworkWeb.LogState
来自:求助得到的回答
热心网友
时间:2023-10-19 20:20
那是为了啥?