在下面的代码中,我在“if”条件行中收到错误“对象引用未设置为对象的实例”。任何人都可以帮助我解决我的代码有什么问题。
public string MemberLogOut()
{
string ret = string.Empty;
try
{
if (HttpContext.Current.Session.Count > 0)
HttpContext.Current.Session.Clear();
ret="1";
}
catch (SqlException ex)
{
throw new Exception(ex.Message);
ret="2";
}
return ret;
}