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