private void Set_SERVICE_Load(object sender, EventArgs e)
{
string connectionString = "server=localhost;database=[데이타베이스이름];uid=[아이디];pwd=[패쓰워드]";
SqlConnection myConnection = new SqlConnection(connectionString);
string commandString = "select * from Parts_Codes";
SqlCommand myCommand = new SqlCommand();
myCommand.Connection = myConnection; // 실행할 서버, DB 지정
myCommand.CommandText = commandString; // 실행할 쿼리지정
myConnection.Open(); // DataBase 오픈
SqlDataReader myReader = myCommand.ExecuteReader();
while (myReader.Read())
{
Lstbox_PartsCode.Items.Add(myReader[0].ToString()); }
}
'Programming > ASP.NET' 카테고리의 다른 글
[스크랩] javascript배열 => cs (0) | 2010.03.26 |
---|---|
[스크랩] cs=>javascript 배열만들기 (0) | 2010.03.26 |
[스크랩] UserControl , Page, MasterPage 사이 컨트롤 접근하기 (0) | 2010.03.26 |
[스크랩] GridView 에 페이징 등록하기 (0) | 2010.03.25 |
동적테이블 생성하기 (0) | 2010.03.15 |
ASP.NET 페이지 암호화 (0) | 2010.03.05 |
ASP.NET 주요 내장 개체(클래스)들 (0) | 2010.03.02 |
ADO.NET의 개요 (0) | 2010.03.02 |
ASP.NET 웹 폼 컨트롤 - 입력 관련 컨트롤: TextBox 컨트롤 (0) | 2010.02.19 |
웹 서버 컨트롤 이란? (0) | 2010.02.18 |