C# String 썸네일형 리스트형 ASP C# String 처리 behind Code 설명 string strResult = ""; if(chkSeoul.Checked == true) { strResult = "Seoul" + Environment.NewLine; } if(chkLondon.Checked == true) { strResult = strResult + "London" + ""; } if (chkParis.Checked == true) { strResult = strResult + "Paris" + ""; } lblResult.Text = strResult; Response.Write (strResult); 위의 값을 실행하면 다음과 같이 결과가 나옵니다. 여기서 다음 문법을 배울 수 있습니다. C#의 String 결합은 + 로 할 수 있다. C#은 ; .. 더보기 이전 1 다음