일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자작 콘솔
- glossary
- Lotus Notes
- 뉴칼레도니아
- 링크하드
- 사진강좌
- DICTIONARY
- 에쿠스 콘솔박스
- Lotus Script
- ASP.NET
- 로터스 노츠
- domino
- generic
- 사진용어
- Attribute
- Nas
- 신혼여행
- 사진
- 커피
- Photo
- JavaScript
- 용어정리
- 자바스크립트
- 노출
- AS
- ODBC
- SQL
- linkhard
- minipresso
- C#
- Today
- 0
- Total
- 250,498
목록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..