Blog Content

  • 17.C# ASP.NET - TextBox 컨트롤 [WebStandardControl]

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

    TextBox 컨트롤을 이용한 예제입니다. FrmTextBox.aspx SingleLine : 이름 : MultiLine : 소개 : Password : 암호 : FrmTextBox.aspx.cs protected void btnOK_Click(object sender, EventArgs e) { // 이름 string name = txtSingleLine.Text; // 소개 string intro = txtMultiLine.Text; // 암호 string password = txtPassword.Text; // 레이블에 출력 this.lblDisplay.Text = String.Format( "{0}{1}{2}{1}{3}{1}", name, " " , intro.Replace("\r\n", " ")..

    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 다음