avisnet's blog

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2006年9月21日

摘要: 使用InProc模式的会话状态管理时,会话数据存储在ASP.NET工作进程(Aspnet_wp.exe)的内存中。使用这种模式可以快速的存取数据,但是一旦ASP.NET工作进程重启后,会话状态数据就会丢失。 SQL Server模式将会话状态数据存储在SQL Server数据库中,可以解决会话状态数据丢失的问题。 阅读全文
posted @ 2006-09-21 22:37 avisnet 阅读(639) 评论(0) 推荐(0) 编辑

摘要: Session Data Is Lost When You Use ASP.NET InProc Session State Mode SYMPTOMS Session data for ASP.NET Web applications appears to be lost at random intervals for the InProc session state mode. CAU... 阅读全文
posted @ 2006-09-21 18:12 avisnet 阅读(287) 评论(0) 推荐(0) 编辑

摘要: LINK : warning LNK4089: all references to "GDI32.dll" discarded by /OPT:REF The warning means that your program contains functions that call GDI, but the functions are never called, so the link to GDI... 阅读全文
posted @ 2006-09-21 17:51 avisnet 阅读(1435) 评论(0) 推荐(0) 编辑

摘要: #pragma warning(push)#pragma warning(disable : 4068 4267 4018)...#pragma warning(pop) 阅读全文
posted @ 2006-09-21 11:01 avisnet 阅读(207) 评论(0) 推荐(0) 编辑