.net - Where is IsolatedStorage located on the filesystem when using IIS/ASP.Net? -
for 1 reason or another, i'm using isolatedstorage asp.net under iis 8.0(integrated mode w/ .net 4.5). works i'd expect. however, it's handy debug isolated storage looking @ files creates on filesystem. can't find these files.
my setup have apppool named testpool
. has identity of jordan
(my local user account). applications seems work data persisting , such. can't find it's stored on file system
where is isolated storage stored in filesystem when using asp.net iis?
apparently, iis has weird behavior when set app pool identity user in administrator group. if you're using regular user, it'll like
c:\users\foobar\appdata\local\isolatedstorage
when you're using administrator identity though, apparently bumps iis thinks it's running system or such. path uses isolatedstorage in case
c:\windows\system32\config\systemprofile\appdata\isolatedstorage
although i've not tested it, assume lead crazy behavior if had 2 app pools set administrator accounts on same machine, they'd both see same instance of isolatedstorage, it'd expected different. either way though, iis writing c:\windows\system32
plenty scary is. i'm doing ease of debugging, it's not huge thing me worry @ least
Comments
Post a Comment