提交两三个表单后,如何在asp.net(C#)中获取第一个flash文件数据?
- 我们的团队致力于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ASP.NET 允许您使用会话状态保存值,这是一种可以从单个 Web 浏览器会话请求的所有页面访问的存储机制。因此,您可以使用会话状态来存储特定于用户的信息。会话状态与应用程序状态类似,不同之处在于它的范围仅限于当前浏览器会话。如果不同的用户正在使用您的应用程序,则每个用户会话都有不同的会话状态。此外,如果用户离开您的应用程序,然后在会话超时期限后返回,则会话状态信息将丢失,并为该用户创建新会话。会话状态存储在会话键/值字典中。
//在会话中存储用户名
Session["UserName"] = txtUser.Text;
//检查天气会话变量是否为空
以获取更多信息
在 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
For more information
Exploring Session in ASP.Net