게시판3 게시판 리스트에 코멘트 출력 메소드 // 코멘트 갯수표시 메소드 코멘트가 없으면 표시하지 않는다. public static string CommentCnt(string commentcnt) { string cnt = ""; if (commentcnt != "0") cnt = "(" + commentcnt + ")"; else cnt = ""; return cnt; } 2007. 6. 29. 파일 업로드 string UpLoadPath = "~/File/"; // 업로드 폴더의 웹경로 string fileName = string.Empty; if (txtFile.PostedFile != null) { fileName = Path.GetFileName(txtFile.FileName); string tmpFileName = fileName; string savePath = Server.MapPath(UpLoadPath + tmpFileName); int j = 0; while (File.Exists(savePath)) //파일중복체크 { j++; tmpFileName = Path.GetFileNameWithoutExtension(fileName) + "(" + j.ToString() + ")" + Path... 2007. 6. 28. 게시판 리스트에 코멘트 출력 메소드 // 코멘트 갯수표시 메소드 코멘트가 없으면 표시하지 않는다. public static string CommentCnt(string commentcnt) { string cnt = ""; if (commentcnt != "0") cnt = "(" + commentcnt + ")"; else cnt = ""; return cnt; } 2007. 6. 28. 이전 1 다음