Tagged Questions
4
votes
1answer
2k 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:
<connectionStrings>
<add ...
3
votes
1answer
2k views
How to use Application Data in an (App.config) connectionString
I've got an SQL Server CE database in a project that I wan't to store somewhere in the %AppData% directory. However I can't find a way to make a reference to the Application Data path in the ...
2
votes
0answers
108 views
Get %appdata% of remote computer [closed]
Possible Duplicate:
How to expand environment variables remotely with .NET?
I need to get the %appdata% of a remote computer in C#. I know i can do it locally with ...
1
vote
1answer
643 views
Saving session data to ApplicationData Folder (Windows 7/WindowsVista/WindowsXP)
I am trying to save session data to the users local ApplicationData folder, but it Windows just seems to create a new ApplicationData folder with the files inside it wherever it wants. Sometimes it ...
0
votes
1answer
94 views
How to set default application path value in user scoped settings
In my C# project, I have a user scoped setting for a folder path which I want to set at design time so that it becomes the default value for new users (If i am not mistaken).
I want to set the ...
0
votes
2answers
253 views
Is it possible to save uploaded files in ~/Content? (ASP.NET MVC2)
I've been trying to save incoming uploaded images in ~/Content on my development machine while debugging/testing, but no files are being transferred there. Does the folder allow for images to be ...
0
votes
1answer
1k views
How to get a given user's AppData directory in C#? [closed]
Possible Duplicate:
How can I get the path of a Windows "special folder" for a specific user?
Is it possible to get the application data directory for a given user who is NOT the ...