提交两三个表单后,如何在asp.net(C#)中获取第一个flash文件数据?

发布于 2024-09-03 11:20:56 字数 175 浏览 3 评论 0原文

  • 我们的团队致力于 flash/Asp.net 购物车项目
  • 在我们的项目中,我们需要获取以前的 flash 文件数据。
  • 提交两到三个表单后,第一页闪存文件数据丢失。
  • 如何维护flash文件数据的状态?
  • 如果有任何想法请帮助我们的团队完成任务
  • Our team working on flash/Asp.net shopping cart projects
  • In our projects we need to get previous flash file data.
  • After two or three form submission the first page flash file data are missing.
  • How can we maintain the state of flash file data?
  • If any idea please help our team to do the task

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

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

发布评论

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

评论(1

不必在意 2024-09-10 11:20:56

ASP.NET 允许您使用会话状态保存值,这是一种可以从单个 Web 浏览器会话请求的所有页面访问的存储机制。因此,您可以使用会话状态来存储特定于用户的信息。会话状态与应用程序状态类似,不同之处在于它的范围仅限于当前浏览器会话。如果不同的用户正在使用您的应用程序,则每个用户会话都有不同的会话状态。此外,如果用户离开您的应用程序,然后在会话超时期限后返回,则会话状态信息将丢失,并为该用户创建新会话。会话状态存储在会话键/值字典中。

//在会话中存储用户名

Session["UserName"] = txtUser.Text;

//检查天气会话变量是否为空

    if (Session["UserName"] != null)

    {

        //Retrieving UserName from Session

        lblWelcome.Text = "Welcome : " + Session["UserName"];

    }

    else

    {

     //Do Something else

    }

以获取更多信息
在 ASP.Net 中探索会话

ASP.NET allows you to save values using session state, a storage mechanism that is accessible from all pages requested by a single Web browser session. Therefore, you can use session state to store user-specific information. Session state is similar to application state, except that it is scoped to the current browser session. If different users are using your application, each user session has a different session state. In addition, if a user leaves your application and then returns later after the session timeout period, session state information is lost and a new session is created for the user. Session state is stored in the Session key/value dictionary.

//Storing UserName in Session

Session["UserName"] = txtUser.Text;

//Check weather session variable null or not

    if (Session["UserName"] != null)

    {

        //Retrieving UserName from Session

        lblWelcome.Text = "Welcome : " + Session["UserName"];

    }

    else

    {

     //Do Something else

    }

For more information
Exploring Session in ASP.Net

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