I am trying to use the settings.designer.cs file for a value that needs to be put into the app.config file. My config(auto-generated by VS2005) file now looks like this:-
C:\Web\App_Data\Messages.mdb; In the C# code i am trying to access this property by this code: Settings1 set = Settings1.Default; string str = set.DatabasePath; return str; The above line of code returns null.can anyone explain what am i missing here?