如何在 .net c# 中检查会话是否存在或为空值或 null
有谁知道如何检查 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
像“如果”这样简单的东西应该有效。
或者,如果您希望在会话值为空时使用空字符串,则类似以下内容:
Something as simple as an 'if' should work.
Or something like this if you want the empty string when the session value is null:
使用
as
运算符转换object
,如果值无法转换为所需的class
类型,则返回null
,或者如果它本身是null
。Cast the
object
using theas
operator, which returnsnull
if the value fails to cast to the desiredclass
type, or if it'snull
itself.您可以将结果分配给变量,并在调用 ToString() 之前测试它是否为 null/空:
You can assign the result to a variable, and test it for null/empty prior to calling ToString():