从会话或请求中获取价值?
目前,我有一些代码可以
var req = HttpContext.Current.Request;
if(!isNull(req["title"], req["desc"], req["tags"])) { doSomthing();}
在某些情况下将标题移动到会话数据中,然后重定向页面或执行我需要的任何操作。 现在这不起作用了。 有什么东西可以用来从请求或会话中提取数据吗?
currently i have code that does
var req = HttpContext.Current.Request;
if(!isNull(req["title"], req["desc"], req["tags"])) { doSomthing();}
on certain cases i move title into session data then redirect the page or do whatever i need. Now this does not work. Is there something i can use to pull data from either request or session?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
怎么样:
??
是空合并运算符,并获取第一个非空结果(当有一个时短路),如果没有非空结果则返回 null。使用 C# 3.0 您还可以添加扩展方法:
How about:
??
is the null-coalescing operator, and takes the first non-null result (short-circuiting when it has one), or null if there are no non-null results.With C# 3.0 You could also add an extension method: