如何在asp中创建会话
如何在asp中创建会话?
我在我的 PHP 代码中使用它
这是我的 php 会话
$sid = CreatePSession();
现在我想在 asp 中使用它,这怎么可能?
how to create session in asp??
I am using this in my PHP code
Here is my php session
$sid = CreatePSession();
Now I want to use this in asp how it is possible ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
就像分配一个值一样简单:
Session
集合是全局可访问的。就像Application
集合一样,它的工作方式几乎相同,不同之处在于它是跨应用程序的。在 PHP 代码中,您正在调用
CreatePSession
函数,并且返回的内容是您必须检查的内容,以便在 ASP 中执行相同的操作。我的猜测是它给了你一个 userId 或者其他东西。It is a simple as assigning a value like this:
The
Session
collection is globally accessible. As is theApplication
collection which pretty much works in the same way with the difference that it is application spanning.In your PHP code, you are calling the
CreatePSession
function and what that returns is something you have to check in order to do the same thing in ASP. My guess is that it is giving you a userId or something.请使用它来创建 asp 会话
Please use this to create asp session