我在尝试读取另一个ASP.NET页中的会话时遇到此问题。
对象引用未设置为对象的实例。
If Session("cne").Equals("") Then Response.Redirect("Default.aspx") End If
我正在使用此代码在默认页中设置会话:
Session("cne") = cne.Text
谢谢。
Dim cne = Session("cne") If cne Is Nothing OrElse cne.Equals("") Then Response.Redirect("~") End If