정수면 덧셈을.. 아니면 에러를 출력하는 화면
defaul.tCS
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace WebApplication1
{
public partial class _Default : Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
PrintLabel.Text = "0";
ErrorMessageLabel.Text = "정수가 아닐 경우 오류를 띄웁니다.";
}
}
protected void sendBtn_Click(object sender, EventArgs e)
{
int buff;
if (int.TryParse(inputTextBox.Text, out buff))
{
PrintLabel.Text = (int.Parse(PrintLabel.Text) + buff).ToString();
ErrorMessageLabel.Text = "에러없음^-^)/";
}
else
{
ErrorMessageLabel.Text = "정수가 아님...-_-;";
}
}
}
}
'ASP' 카테고리의 다른 글
DB로 보내서 비교 및 켄도 윈도우 새로고침 (0) | 2013.11.11 |
---|---|
MVC에서 DB랑 연동하는 간단 예 (0) | 2013.11.08 |
Telerik-ASP/AJAX Demos (0) | 2013.10.24 |
postion 사용법 (0) | 2013.10.23 |
창 크기 변화시켜도 가운데 정렬시키는 방법 (0) | 2013.10.23 |