private void btnCheckCorpNum_Click(object sender, EventArgs e)
        {
            try
            {
                String tmp;

                CorpState corpState = closedownService.checkCorpNum(txtCorpNum.Text, txtCheckCorpNum.Text);

                tmp  = "corpNum : " + corpState.corpNum + CRLF;
                tmp += "state : " + corpState.state + CRLF;
                tmp += "type : " + corpState.type + CRLF;
                tmp += "stateDate(휴폐업일자) : " + corpState.stateDate + CRLF;
                tmp += "checkDate(국세청확인일자) : " + corpState.checkDate + CRLF + CRLF;

                tmp += "* state (휴폐업상태) : null-알수없음, 0-등록되지 않은 사업자번호, 1-사업중, 2-폐업, 3-휴업" + CRLF;
                tmp += "* type (사업 유형) : null-알수없음, 1-일반과세자, 2-면세과세자, 3-간이과세자, 4-비영리법인, 국가기관" + CRLF;

                MessageBox.Show(tmp);
            }

            catch (PopbillException ex)
            {
                MessageBox.Show(ex.code.ToString() + " | " + ex.Message);
            }
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            /**
             * 사업자번호 1건에 대한 휴폐업정보를 확인합니다.
             * - https://docs.popbill.com/closedown/dotnet/api#CheckCorpNum
             */

            // 팝빌회원 사업자번호, '-' 제외 10자리
            String testCorpNum = "1234567890";

            // 조회할 사업자 등록번호
            String targetCorpNum = "6798700433";

            try
            {
                result = Global.closedownService.checkCorpNum(testCorpNum, targetCorpNum);
            }
            catch (PopbillException ex)
            {
                code    = ex.code.ToString();
                message = ex.Message;
            }
        }