Session
変数が存在するかどうかを判断しようとしていますが、エラーが発生しています:
System.NullReferenceException: オブジェクト参照がオブジェクトのインスタンスに設定されていません。
コード:
// Check if the "company_path" exists in the Session context
if (System.Web.HttpContext.Current.Session["company_path"].ToString() != null)
{
// Session exists, set it
company_path = System.Web.HttpContext.Current.Session["company_path"].ToString();
}
else
{
// Session doesn't exist, set it to the default
company_path = "/reflex/SMD";
}
これは、Session
「company_path」という名前が存在しないためですが、検出できません!