Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Store Connection String
Message
Information générale
Forum:
ASP.NET
Catégorie:
Code, syntaxe and commandes
Versions des environnements
Environment:
VB 9.0
OS:
Vista
Network:
Windows 2008 Server
Database:
MS SQL Server
Divers
Thread ID:
01358780
Message ID:
01358944
Vues:
34
Hi,

Not compiled - but renamed and included as 'executablename.exe.config'. It is still an editable XML document (and,as such, can be programatically changed at runtime if required)
HTH
Viv

>I'm a bit confused - the app.config file is compiled with the app, isn't ? Remember, I would like a way to read an INI file based on the location I'm working at.
>
>Why not just use am.INI file, like the old days?
>
>
>>>How can I store a DB connection string with my C# project? I have different string determined by where I'm working at, so I'd like make it work around that.
>>
>>If it's a desktop app save in the app.config file, for a web app saving it in the web.config file. Something like:
>>
>>Desktop:
>>
>>
>><configuration>
>>  <appSettings>
>>   <add key="connection" value="connection string here"></add>
>>  <appSettings>
>></configuration>
>>
>>
>>Read it with:
>>
>>
>>   using System.Configuration;
>>   //
>>   string connString = ConfigurationSettings.AppSettings("connection");
>>
>>
>>Web:
>>
>><connectionStrings>
>>  <add name="connection" connectionString="conn string here"/>
>></connectionStrings>
>>
>>
>>Read it with:
>>
>>System.Configuration.ConnectionStringSettings connSetting = System.Web.Configuration.WebConfigurationManager.ConnectionStrings["connection"];
>>string connString = connSetting.ConnectionString;
>>
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform