Blog Content

  • 18.C# ASP.NET - Button 컨트롤 [WebStandardControl]

    Category ASP.NET on 2009. 10. 6. 11:21

    Button 컨트롤에 관련된 예제입니다. FrmButton.aspx FrmButton.aspx.cs protected void btnUp_Click(object sender, EventArgs e) { txtNum.Text = Convert.ToString(Convert.ToInt32(txtNum.Text) + 1); } protected void btnDown_Click(object sender, EventArgs e) { txtNum.Text = Convert.ToString(Int32.Parse(txtNum.Text) - 1); } 결과화면

    Read more
  • 15.C# ASP.NET - Lable, TextBox, Button 컨트롤 [WebStandardControl]

    Category ASP.NET on 2009. 10. 6. 10:20

    Lable, TextBox, Button 컨트롤을 이용하여 나이를 구하는 예제 입니다. FrmLabelTextBoxButton.aspx FrmLabelTextBoxButton.aspx.cs protected void btnClick_Click(object sender, EventArgs e) { //나이값을 구하는 프로그램 int age = DateTime.Now.Year - Convert.ToInt32(txtBirth.Text) + 1; lblAge.Text = age.ToString(); } 결과화면 label1은 기본좌표, label2는 상대좌표로 키보드방향키, 마우스로 이동 label2와 같은 방법은 절대 안함 : 코드가 길어짐, 유지보수가 힘듬 => 간단하게 레이아웃으로 잡아서 사용) 윈폼은 클..

    Read more
이전 1 다음