Multipart 썸네일형 리스트형 [ASP.NET] 클라이언트가 멀티파트 보내고 서버가 받기 참고 : http://www.scripter.co.kr/entry/c-MultipartUpload 클라이언트 : string url = "http://someServerApp.aspx"; FileStream fs = File.Open(@"d:\a.jpg", FileMode.Open, FileAccess.Read); byte[] data = new byte[fs.Length]; fs.Read(data, 0, data.Length); fs.Close(); Dictionary postParam = new Dictionary(); postParam.Add("1stParam", "1stValue"); postParam.Add("2ndParam", "2ndValue"); postParam.Add("file", ne.. 더보기 이전 1 다음