如何在asp中创建会话

发布于 2024-12-09 12:54:29 字数 144 浏览 0 评论 0原文

如何在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 技术交流群。

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

发布评论

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

评论(2

初吻给了烟 2024-12-16 12:54:29

就像分配一个值一样简单:

Session("mySessionKey") = "My value"

Session 集合是全局可访问的。就像 Application 集合一样,它的工作方式几乎相同,不同之处在于它是跨应用程序的。

在 PHP 代码中,您正在调用 CreatePSession 函数,并且返回的内容是您必须检查的内容,以便在 ASP 中执行相同的操作。我的猜测是它给了你一个 userId 或者其他东西。

It is a simple as assigning a value like this:

Session("mySessionKey") = "My value"

The Session collection is globally accessible. As is the Application 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.

素衣风尘叹 2024-12-16 12:54:29

请使用它来创建 asp 会话

Session("test")="anyvalue"

Please use this to create asp session

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