제목 : 안녕하십니까~ 카테고리저장하는부분에서 막히고 있습니다.ㅠㅠ
글번호:
|
|
878
|
작성자:
|
|
김한진
|
작성일:
|
|
2005/02/03 오후 4:56:00
|
조회수:
|
|
2983
|
밑에 소스에서 서브밋이벤트안에 변수를 어떻게 줘야하는지 알고싶습니다.
pos int 형식이구요... 아시는분 계시나요?^^
private void Submit3_ServerClick(object sender, System.EventArgs e)
{
SqlConnection Con = new SqlConnection();
Con.ConnectionString = ConfigurationSettings.AppSettings["CONNECTION_STRING"];
Con.Open();
SqlCommand Cmd = new SqlCommand();
Cmd.Connection = Con;
// "+ 변수 +"
Cmd.CommandText = "insert into largeno(lname, pos) values('"+ this.txtLarge.Text +"', '"+ 변수 +"')";
Cmd.CommandType = CommandType.Text;
Cmd.ExecuteNonQuery();
Con.Close();
Response.Redirect("./category.aspx");
}