Пример #1
0
        //내용확인버튼
        private void btnConfirm_Click(object sender, EventArgs e)
        {
            //List<string> liInfo = Paser.GetInfo(mURL, mStartStr, mLastStr);
            List <string> liFindWhat = new List <string>();

            liFindWhat.Add(mStartStr + "|&|" + mLastStr);
            liFindWhat.Add("'eng list_vspace' colspan=2  title=" + "|&|" + ">");

            List <string> liInfo = Paser.GetHtmlInfo(mURL, liFindWhat);

            string strInfo = "";

            for (int i = 0; i < liInfo.Count; i++)
            {
                strInfo += liInfo[i] + Environment.NewLine + Environment.NewLine;
            }

            MessageBox.Show(strInfo);
        }