如何在 .net c# 中检查会话是否存在或为空值或 null

发布于 2024-11-09 11:36:00 字数 255 浏览 0 评论 0原文

有谁知道如何检查 .net c# Web 应用程序中的会话是否为空或 null?

示例:

我有以下代码:

 ixCardType.SelectedValue = Session["ixCardType"].ToString();

它总是显示 Session["ixCardType"] 的错误(错误消息:对象引用未设置到对象的实例)。无论如何,我可以在转到 .ToString() 之前检查会话?

Does anyone know how can I check whether a session is empty or null in .net c# web-applications?

Example:

I have the following code:

 ixCardType.SelectedValue = Session["ixCardType"].ToString();

It's always display me error for Session["ixCardType"] (error message: Object reference not set to an instance of an object). Anyway I can check the session before go to the .ToString() ??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

凹づ凸ル 2024-11-16 11:36:00

像“如果”这样简单的东西应该有效。

 if(Session["ixCardType"] != null)    
     ixCardType.SelectedValue = Session["ixCardType"].ToString();

或者,如果您希望在会话值为空时使用空字符串,则类似以下内容:

ixCardType.SelectedValue = Session["ixCardType"] == null? "" : Session["ixCardType"].ToString();

Something as simple as an 'if' should work.

 if(Session["ixCardType"] != null)    
     ixCardType.SelectedValue = Session["ixCardType"].ToString();

Or something like this if you want the empty string when the session value is null:

ixCardType.SelectedValue = Session["ixCardType"] == null? "" : Session["ixCardType"].ToString();
风和你 2024-11-16 11:36:00

使用 as 运算符转换 object,如果值无法转换为所需的 class 类型,则返回 null ,或者如果它本身是 null

string value = Session["ixCardType"] as string;

if (String.IsNullOrEmpty(value))
{
    // null or empty
}

Cast the object using the as operator, which returns null if the value fails to cast to the desired class type, or if it's null itself.

string value = Session["ixCardType"] as string;

if (String.IsNullOrEmpty(value))
{
    // null or empty
}
流云如水 2024-11-16 11:36:00

您可以将结果分配给变量,并在调用 ToString() 之前测试它是否为 null/空:

var cardType = Session["ixCardType"];
if (cardType != null)
{
    ixCardType.SelectedValue = cardType.ToString();
}

You can assign the result to a variable, and test it for null/empty prior to calling ToString():

var cardType = Session["ixCardType"];
if (cardType != null)
{
    ixCardType.SelectedValue = cardType.ToString();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文