일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- domino
- AS
- 에쿠스 콘솔박스
- 로터스 노츠
- 노출
- 링크하드
- 커피
- ODBC
- 사진용어
- Attribute
- generic
- C#
- 사진
- 자작 콘솔
- glossary
- Nas
- Lotus Script
- linkhard
- 뉴칼레도니아
- SQL
- ASP.NET
- minipresso
- Photo
- 용어정리
- JavaScript
- 자바스크립트
- DICTIONARY
- 신혼여행
- Lotus Notes
- 사진강좌
- Today
- Total
목록ASP.NET (2)
바라기의 이야기
Json 데이터로 구성되어있는 데이터를 NameValueCollection으로 변환하여 참조하기 위하여 사용... 참조 예제일 뿐... ^^ 기록해 두지 않으면 잊어 먹어싸서... # 참조 using System.Collections.Generic; using System.Collections.Specialized; using System.Web.Script.Serialization; public NameValueCollection FromJsonData(string jsonData) { JavaScriptSerializer jsData = new JavaScriptSerializer(); Dictionary dictionary = jsData.Deserialize(jsonData); NameValueC..
string destFile = strTempDir + strFileName + ".docx"; FileStream sm1 = File.OpenRead(destFile); Response.ClearHeaders(); Response.ClearContent(); Response.Clear(); Response.ContentType = "application/vnd.openxmlformats-officedocument.wordprocessingml.document"; Response.AddHeader("Content-disposition", "attachment;filename=" + "OKOK.docx;"); Response.AddHeader("Content-Length", sm1.Length.ToStri..