Tagged Questions
The appsettings tag has no wiki summary.
30
votes
6answers
14k views
Why isn't there an XML-serializable dictionary in .NET?
I need an XML-serializable dictionary. Actually, I now have two quite different programs that need one. I was rather surprised to see that .NET doesn't have one. I asked the question elsewhere and ...
18
votes
3answers
2k views
What is the difference between app.config file and XYZ.settings file?
I am actually in the learning phase of .NET related stuff and I was exploring how to save the application. I ended up writing my own class which saves the settings in an XML file and then I found that ...
17
votes
7answers
2k views
When to use .NET Settings vs config <appsettings>?
Are there any recommendations on when to use Application settings (not per user settings) vs. .config file <appsettings>?
Update
Looking to understand some of the finer and important ...
16
votes
5answers
2k views
Why do people consistently recommend using appConfig instead of using Settings files? (.NET)
Very often I see the answer to the question like: "How should I store settings in my .NET app?" is to edit the app.config file by manually adding entries to the app.config (or web.config) like so:
...
13
votes
5answers
7k views
Restoring Window Size/Position With Multiple Monitors
Many posts around about restoring a WinForm position and size.
Examples:
www.stackoverflow.com/questions/92540/save-and-restore-form-position-and-size
...
12
votes
3answers
2k views
appSettings vs applicationSettings. appSettings outdated?
I've got some question about two ways to save settings in the web.config.
Appsettings:
Look in web.config
<appSettings>
<add key="key1" value="value1"/>
<add key="key2" ...
9
votes
3answers
4k views
C# assembly > app settings > how to check if one exists?
How do I check to see if an Application Setting is available?
i.e. app.config ==>
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key ...
9
votes
5answers
9k views
Reading settings from app.config or web.config in .net
I'm working on a C# class library that needs to be able to read settings the web.config or app.config file (depending on whether the DLL is referenced from an ASP.NET web application or a Windows ...
9
votes
3answers
1k views
Inject App Settings using Windsor
How can I inject the value of an appSettings entry (from app.config or web.config) into a service using the Windsor container? If I wanted to inject the value of a Windsor property into a service, I ...
9
votes
6answers
3k views
Get the App.Config of another Exe
I have an exe with an App.Config file. Now I want to create a wrapper dll around the exe in order to consume some of the functionalities.
The question is how can I access the app.config property in ...
7
votes
7answers
2k views
Best practices for storing UI settings?
we're currently planning a larger WPF LoB application and i wonder what others think being the best practice for storing lots of UI settings e.g.
Expander States
Menu orders
Sizing Properties
etc...
...
6
votes
4answers
1k views
ConfigurationManager.AppSettings[“SettingName”] vs Properties.Settings.Default.SettingName when should I use each?
What should dictate when I should use the configurationManager.AppSettings or the strongly typed settings that visual studio generates? The strongly typed ones seem much more appropriate in most ...
6
votes
2answers
815 views
WPF: Bind to a value defined in the Settings
In WPF, Can I use binding with values defined in Settings? If this is possible, please provide a sample.
5
votes
2answers
2k views
Can someone provide a quick App.config/Web.config tutorial?
I've used these two configuration files many times before, but I've never taken the time to fully understand how they really work. As most people do, I understand the basics in how to call ...
5
votes
2answers
9k views
How to update appSettings in a WPF app?
Greetings to all! This is my first question here on stackoverflow. I have a WPF application that I am writing for the fellow developers in my department, and there are a couple of settings that I ...
4
votes
3answers
302 views
Error parsing AppSettings value with a query string
In my AppSettings in web.config, I have something like this:
<appSettings>
<add key="ExternalSystemUrl" value="http://domain.com/page.aspx?id={0}&action=eat&object=bacon" />
...
4
votes
2answers
1k views
Find current country from iPhone device
I have to get the current country in the iPhone settings. Can anyone tell me how to get the current country in iPhone application.
I have to use the current country for parsing the RSS feed in which ...
4
votes
1answer
463 views
appSettings file attribute equivalent for applicationSettings
In a asp.net web.config file you can do
<appSettings file="local.appSettings.config">
<add key="foo" value="bar" />
</appSettings>
and it will look in local.appSettings.config ...
4
votes
2answers
1k views
Using appsettings in the DAL layer
I have a winforms application in which some of the data is stored in XML files.
The location where these XML files should be stored can be configured by the user, and is stored in the AppSettings.
All ...
4
votes
3answers
729 views
Can i use Linq to iterate/filter my web.config AppSettings?
i'm trying to figure out how I can use Linq to filter out some of my appsettings from my web.config file.
i'm trying to do something like the following (which has wrong syntax) :-
var query = from q ...
4
votes
3answers
608 views
Using the database to hold application settings
I am looking at ways to make our application more extensible and easier to manipulate without having to alter the web.config (or, in our case, application.config files, which contain the appsettings ...
4
votes
3answers
2k views
Change in AppSettings needs restart my Application how can I avoid?
I'm using C# .NET 2.0 Windows Application.
and I'm using app.config for my Application Settings.
but change in AppSettings doesn't reflected runtime, it Needs Application to be restarted.
How can I ...
3
votes
2answers
112 views
Performance issues with repeated calls to ConfigurationManager.AppSettings to get appsetting values?
I'm working on a code base that has a lot of identical ConfigurationManager.AppSetting calls scattered throughout.
Does this sound like a possible performance issue?
Or because the data being ...
3
votes
5answers
168 views
Store app settings in Database
We have lot appSettings in our asp.net application. Is it a good idea to move them to database. I know one advantage is it is easy to maintain and do administrative activities. I need to know if ...
3
votes
1answer
168 views
Only support iPad2
I am making a app involve the use of camera. However, ipad1 does not support and crash when press the camera.
How can I choose that app only support ipad2 but not ipad1?
Is there anything i can set ...
3
votes
3answers
286 views
Accessing app setting from aspx and add concatenated text
I've got a project where I'm tasked with changing hard-coded domain references from one domain to another in a group of legacy C#/VB web projects. I want to parameterize the domains as much as ...
3
votes
2answers
1k views
Opening the Settings app from another app
Ok, i know that there are many question about it, but they are all from many time ago.
So...I know that it is possible because the Map app does it.
In the Map app if I turn off the localization for ...
3
votes
1answer
348 views
Nesting appSettings with the file attribute
I'm trying to pull off an inheritance chain of appSetting sections (VS2010 C#)
Given this,
Base.config
<appSettings>
<add key="basekey" value="basevalue"/>
</appSettings>
...
3
votes
2answers
422 views
When is using the <appSettings> section preferable to a custom configuration section?
When creating my application's or library's configuration, I generally prefer using a custom configuration section over the <appSettings> section for the following reasons.
Framework ...
3
votes
2answers
689 views
How do I supply extra info to IApplicationSettingsProvider class?
Perhaps this question has been asked before in a different way, but I haven’t been able to find it.
I have one or more plugin adapter assemblies in my application all having the type IPlugin, for ...
3
votes
1answer
321 views
Best practices for user settings/configuration in a c# client app
I am working on a .NET app that will also run on iphone via monotouch and osx/linux via mono. The app will hold profiles for various users and the profile used for a particular session will be ...
3
votes
1answer
472 views
ASP.NET Web.config AppSettings Performance
I have a number of appSettings in web.config that are used frequently (i.e. on each post back). Does the ConfigurationManager hold these values in process or are there any performance gains to be had ...
3
votes
1answer
4k views
Reading dll.config (not app.config!) from a plugin module
I am writing a C# .NET 2.0 .dll that is a plug in to a Larger application. The visual studio project for my module has a app.config file which is copied to a MyProj.dll.config along side of ...
3
votes
1answer
1k views
ASP.NET App Settings Directly in Markup
What is the syntax for accessing a AppSettings directly from the ASP.NET Markup? I can't remember exactly, but it was something like '<%= $.settingname %>'
3
votes
4answers
12k views
Storing values in the web.config - appSettings or configSection - which is more efficient?
I'm writing a page that can use a couple of different themes, and I'm going to store some information about each theme in the web.config.
Is it more efficient to create a new sectionGroup and store ...
2
votes
2answers
63 views
How to manage configuration from several class libraries in .NET?
I'm looking for a best practice for managing configuration on a project with multiple class libraries. I'm looking for maintainability and ease of implementation.
Let's assume a simple example: A ...
2
votes
1answer
105 views
NSUser Defaults vs. App Delegate for App Settings
I currently have my app settings stored in an Entity called Settings. Each of my settings is an attribute. I have one Settings object which I load in my app delegate, and I access it through the ...
2
votes
2answers
274 views
app.config: how do I make a nested customSection called appSettings be the ConfigurationManager.AppSettings
my desired app.config would be like this:
<configSections>
<sectionGroup name="QA_Environment">
<section name="databases" ...
2
votes
3answers
227 views
How I can write in appSetting in web.config file using ASP.NET?
I can easily read my appSetting in web.config file and then fill all keys and values in asp.net form. but I need to have initial setup for my web application how I can write in appSetting ?
Is it the ...
2
votes
1answer
266 views
Reading integers from AppSettings over and over
Some I do quite a lot of is read integers from AppSettings. What's the best way to do this?
Rather than do this every time:
int page_size;
if (int.TryParse( ...
2
votes
1answer
303 views
Modify App.config permanently C#
Ok so im trying to use the appSettings element in the App.Config file to determine what kind of storage to use. Here is my app.config file:
<?xml version="1.0" encoding="utf-8" ?>
...
2
votes
5answers
609 views
Application settings methods? c++
I am thinking about adding configurable settings to an application, and I think the easiest ways are an external file or win registry (its a win only app).
Which way would be better?
I was ...
2
votes
1answer
240 views
reloading app.config after writing
When I use this to write to my app.config file:
Configuration config =ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
config.AppSettings.Settings["Wachtwoord"].Value = "Test";
...
2
votes
2answers
412 views
In a given C# Windows Forms application/WPF, where are user settings usually stored?
I was thinking either:
An Appconfig file
A generic .XML file and have the program load values at launch.
What is the best way to do this? A website with a best user tutorial perhaps?
2
votes
3answers
1k views
how to change .NET user settings location
By default settings are stored at: C:\Documents and Settings\\Local Settings\Application Data\<Project Name>
How can I change this path to application directory. I also don't want to have ...
2
votes
1answer
192 views
How to offer application settings to an end user of your library, at design time, in .net, winforms
I have a library with with a set of classes with a common property that i'd like an end user to be able to override without overriding all the classes.
The important thing is, the property has to be ...
2
votes
5answers
437 views
Writing drive C: in Windows 7/Vista
I am developing an application that saves its settings in the install folder. If I install the app in the Program Files on drive C: and attempt to write the settings file I get an exception and that's ...
2
votes
2answers
761 views
Auto-generate an application facade from appsettings
Here's the question first:
Is this possible? I'm taking my inspiration from Joe Wrobel's work (a redux of the forgotten Codeplex project). Here, you do your work on creating your profile for the ...
2
votes
2answers
394 views
AppSettings shourtcut question
I am trying to use the <%$ AppSettings: .. %> shortcut in an asp.net user control.
I am able to use the syntax fine when binding a property to an appsetting, however I want to use an appsetting to ...
2
votes
1answer
854 views
Using configSource, and changing restartOnExternalChanges for core section
I'd like to use the configSource attribute of my web config section to define external files for various settings.
Particularly, the appSettings section. This means my config file has the following ...