일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- jQuery
- SSRS
- MSSQL
- MS
- attr()
- javascript
- aspnet
- 프로시저
- 윈도우
- oracle
- 윈폼
- 이클립스
- 엑셀
- DataGrid
- 마이크로소프트
- 리포팅서비스
- c#
- ASP
- 오라클
- 자바스크립트
- microsoft
- Winform
- windows
- Excel
- replace()
- CONVERT()
- IIS
- 단축키
- 태그를 입력해 주세요.
- 비주얼스튜디오
- Today
- Total
목록저장 (3)
DJ메탈짱™의 Free Style
테이블 디자이너에서 저장시 이상한 alert 나오면서 저장 안되는 경우.- Saving changes is not permitted in SQL 2008 Management Studio캡쳐 화면과 같이 옵션체크 해제 해주면 됩니다.
OpenFileDialog 컨트롤을 사용하여 파일을 불러오고, 불러온 파일의 내용을 List 컬렉션에 담아서 반환한다. private void OpenFileDialog() { List rList = new List(); using (OpenFileDialog opd = new OpenFileDialog()) { opd.DefaultExt = "All files"; // 기본 파일타입 설정 opd.Filter = "All files (*.*)|*.*"; // 파일타입 opd.Multiselect = false; // 다중선택되지 않도록. string strAppDir = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); opd.Initi..
[ 하이퍼 링크 사용 ] http://stackoverflow.com/questions/4253299/how-to-open-the-save-as-dialog-on-click-of-the-image [ Html 헤더(meta태그)에 다운로드 정의하는 방법 ] http://stackoverflow.com/questions/3802510/force-to-open-save-as-popup-open-at-text-link-click-for-pdf-in-html [ 자바스크립트 사용 ] http://dl.dropboxusercontent.com/u/35146/ieSaveAs.html var win; function check() { if (win.document.readyState=='complete'){ win...