.Net2.0은 애플리케이션 구성 섹션을 읽습니다.
저자:Eve Cole
업데이트 시간:2009-06-30 16:09:31
방법 1: 네임스페이스 추가: using System.Configuration; 그런 다음 strDbConn = new AppSettingsReader().GetValue("dbconn", typeof(string)).ToString() 방법 2: 참조 추가: (system.configuration) 이름 공간 추가 using System.Configuration;string strDbConn = ConfigurationManager.AppSettings["dbconn"]; 실제로는 매우 간단합니다. 꾸짖지 말고 다른 사람이 볼 수 있도록 적어 두세요. :)