Asp.net resx 文件更新而不结束会话?
Asp.net resx file update without ending session?
我有全局资源文件,当我更新一个值然后自动从网站注销,我需要重新登录才能更改另一个值。
我们可以在不注销会话的情况下更新语言文件 (resx) 吗?
我需要针对这种情况的解决方案。
谢谢,
您当前的会话 storage/mode 是什么?如果是内存(InProc
),那么应用程序回收将清除会话数据。您需要使用在应用程序回收后仍然存在的 different mode/storage - 例如StateSever
或 SQLServer
ASP.NET File Change Notifications, exactly which files and directories are monitored?
2) The bin
, App_Code
, App_WebReferences
, App_GlobalResources
, and App_Browsers
subdirectories of the application root folder are monitored for creation, deletion, renaming, ACL changes, changes to the last-write time, and changes to the size. If any of these things change, the AppDomain is unloaded.....
第...
我有全局资源文件,当我更新一个值然后自动从网站注销,我需要重新登录才能更改另一个值。
我们可以在不注销会话的情况下更新语言文件 (resx) 吗?
我需要针对这种情况的解决方案。
谢谢,
您当前的会话 storage/mode 是什么?如果是内存(InProc
),那么应用程序回收将清除会话数据。您需要使用在应用程序回收后仍然存在的 different mode/storage - 例如StateSever
或 SQLServer
ASP.NET File Change Notifications, exactly which files and directories are monitored?
2) The
bin
,App_Code
,App_WebReferences
,App_GlobalResources
, andApp_Browsers
subdirectories of the application root folder are monitored for creation, deletion, renaming, ACL changes, changes to the last-write time, and changes to the size. If any of these things change, the AppDomain is unloaded.....
第...