ASP/ADO.Net C# 실무 과정 자료] index.aspx Code Behind #2

 

 

 

 

 

 

ASP/ADO.Net C# 실무 과정 자료] index.aspx Code Behind #2

실무개발자를위한 실무교육 전문교육센터학원
www.oraclejava.co.kr에 오시면 보다 다양한 강좌를 보실 수 있습니다.

 

index.aspx Code Behind #2

 

SqlCommand cmd = new SqlCommand("INSERT INTO [dbo].[Book] ([isbn] ,[title] ,[price] ,[publish] ,[published] ,[cdrom])      VALUES ('9791186712054' ,'헬조선에 장도리를 던져라' ,11700 ,'비아북' ,'2015-12-04' ,'False');");
            cmd.CommandType = System.Data.CommandType.Text;
            cmd.Connection = conn;

            SqlDataReader reader = cmd.ExecuteReader();

            conn.Close();

            lbl_test.Text = "저장 성공";

        }

+ Recent posts