0
votes
1answer
17 views
How do I copy a DB from the server to the application’s AppData folder?
Hello folks, I've been working on an ASP.NET application accessing a DB in my local machine.
Now I want to have this DB in the app's AppData folder instead, so I can easily work on …
1
vote
2answers
32 views
Writing files in App_Data causes tempdata to be null
I have a small asp.net MVC 1 web app that can store files and create directories in the App_Data directory. When the write operation succeeds, I add a message to the tempdata and d …
0
votes
0answers
21 views
What is the suffix called in this example: HelloWorld.exe_Url_sbgzldmathiegtnjmnawytpet03ycanv?
Hello,
I have a question about the very long random looking suffix that is appended to directories created in the AppData folder when saving user preferences from a C# .NET Window …
1
vote
2answers
100 views
Does Microsoft have a best practices document regarding the storage of App Data vs User Data on different Windows Platforms?
When creating an application that will be targeted to many versions of Windows what is the best practice to determine where application specific data should be stored. Specifically …
1
vote
1answer
119 views
How do I reference the Sqlite db file in the App_Data folder for my ASP.NET Web Application?
I'm currently storing my sqlite db file in the App_Data folder as per ASP.NET best pattern and practices.
Currently I'm using the following in the webconfig:
<connectionStri …
0
votes
2answers
103 views
How do i add an App_Data folder in visual studio?
This is a silly question but How do I add an App_Data folder to a project? i have an xsd file that i want to include into the project.
0
votes
3answers
200 views
How to get a given user’s AppData directory in C#?
Is it possible to get the application data directory for a given user who is NOT the user running the program in C#?
1
vote
1answer
154 views
SHGetFolderPath() for a specific user.
I'm looking for a good way to get the local application data folder for a specific user -- without having to enter the login details for that user.
SHGetFolderPath() can accept an …
2
votes
2answers
164 views
Allowing administrators to modify user’s settings from within my program — what’s my best option?
I've been working on making my app easier to use for administrators. One of the things I'd really like to do is allow admins to modify other user's settings from within the program …
1
vote
1answer
224 views
When should I opt for IsolatedStorage versus AppData file storage?
I've recently discovered the IsolatedStorage facilities in .net, and I'm wondering when I should use them for my application data versus when I should use (e.g.) Application.LocalU …
