私はapp.config
ファイルにいくつかの異なるセクションに値を格納しています。私はこれらのスニペットを持っています:codebehindからapp.configのカスタムセクションを読むにはどうすればよいですか?
<configuration>
<configSections>
<sectionGroup name="someDataAccessLayer">
<section name="databaseConnectionStrings" type="sometype" />
</sectionGroup>
</configSections>
<someDataAccessLayer>
<databaseConnectionStrings>
<databaseConnectionString name="someSQL"
value="database=somedatabase;Integrated Security=False;User Id=sa;server=someserver;Password=somepassword/>
</databaseConnectionStrings>
</someDataAccessLayer>
コードビハインドでどのように接続文字列を読みますか?具体的にはvalue
は
database=somedatabase;Integrated Security=False;User Id=sa;server=someserver;Password=somepassword
ありがとうございます!質問がまだ不明な場合はお知らせください。
感謝の絞りかすを。これは助けになった。 – will0809
@marc_sも条件付きで更新できますか? – King