일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 마이크로소프트
- 비주얼스튜디오
- CONVERT()
- 자바스크립트
- 엑셀
- c#
- 단축키
- Excel
- 오라클
- 태그를 입력해 주세요.
- javascript
- 리포팅서비스
- DataGrid
- jQuery
- ASP
- aspnet
- 이클립스
- 윈폼
- microsoft
- windows
- attr()
- MSSQL
- MS
- replace()
- 윈도우
- Winform
- IIS
- oracle
- 프로시저
- SSRS
- Today
- Total
목록분류 전체보기 (389)
DJ메탈짱™의 Free Style
임시파일(엑셀)을 업로드 한 이후에 공급자를 통해 엑셀파일을 읽어올때 아래와 같은 오류가 발생 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) ErrMessage : 'Microsoft.Jet.OLEDB.4.0' 공급자는 로컬 컴퓨터에 등록할 수 없습니다 해당 웹사이트의 해당 응용프로그램 풀의 32비트 응용 프로그램 사용 = "false" --> "true" 로 변경해준다.
오류내용 : 버튼(이미지) 클릭시 아래와 같은 자바스크립트 오류가 발생함. 'WebForm_PostBackOptions'이(가) 정의되지 않았습니다. ASP.NET 2.0 이상으로 구현되는 경우. web.config에 아래와 같이 이벤트 핸들러를 추가해주는데.조치사항 : GET verb를 제거해주면 문제가 발생하지 않음. 원인은 안타깝게도 잘 모르겠다. 구글링 해보면 쉽지 않은 문제라고만 나오고 딱히 원인을 알수 없었다. 복잡하니 PASS
특정값을 전달 받았을때 dropdownlist의 항목을 select 하는 방법... 제일 안전한 방법이라고 본인은 그리 생각함. ㅋ this.xmlCOUNTRYCD.SelectedIndex = this.xmlCOUNTRYCD.Items.IndexOf(this.xmlCOUNTRYCD.Items.FindByValue("KOR"));
이제는 Dundas Chart를 비주얼 스튜디오에서 사용. 아래 URL에서 Web Form, Window Form 샘플 자료 제공해줌. - ScottGu's Blog http://weblogs.asp.net/scottgu/archive/2010/02/07/built-in-charting-controls-vs-2010-and-net-4-series.aspx - Sample Download https://visualstudiogallery.msdn.microsoft.com/BF02B581-039F-4E6A-BA12-5C699CE6D16D
xxx.aspx (server control) xxx.aspx (javascript) function segTypeAll(source, arguments) { var txt = arguments.Value; // more than two? var msg = ''; if (txt == '전체') { $('#vrfAll').text(msg); arguments.IsValid = false; } else { arguments.IsValid = true; } } ErrorMessage에 지정한 값이 아닌 원하는 값을 보여주고자 하는 경우 사용.
데이터그리드에 바인딩 값을 export 하려고 할때 오류가 발생하면 아래와 같은 경우를 확인하자. [ErrorMessage] - 형식 'DataGridLinkButton'의 컨트롤 'dgList__ctl2__ctl0'은(는) runat=server 구문과 함께 form 태그 내부에 와야 합니다. xxx.cs (export 기능이 있는 파일) public override void VerifyRenderingInServerForm(System.Web.UI.Control control) { // Confirms that an HtmlForm control is rendered for the specified ASP.NET server control at run time. } [ErrorMessage] - Re..
VS2003 to VS2010 마이그레이션 하는 과정에서 관리되는 통합 파이프라인 모드에 적용되지 않는 ASP.NET 설정이 있습니다 에러 발생시 Visual Studio 명령프롬프트에서 아래 명령어를 실행하여 웹사이트 자체를 마이그레이션 해준다. %SystemRoot%\system32\inetsrv\appcmd migrate config "Default Web Site/" --> Default Web Site : 웹 사이트명 그러면... "system.web/httpModules" 섹션을 마이그레이션했습니다." 등과 같은 결과메시지 나오는데... web.config 파일을 보면 아래 부분이 추가되는 것을 확인할 수 있음.
// 사용자매뉴얼 설정$("#logon_manual").click(function(){ $(location).attr("href",http://서버IP/downloadfile.aspx?fname=SJCRM_Manual.pdf);});-------------------------------------------------------------------- downloadfile.aspx--------------------------------------------------------------------
Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Could not load file or assembly 'Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its d..
HTTP 오류 500.21 - Internal Server Error "PageHandlerFactory-Integrated" 처리기의 모듈 목록에 잘못된 모듈 "ManagedPipelineHandler"이(가) 있습니다 원인1) 응용프로그램 풀이 존재하지 않는 경우 (ASP.NET 설치가 누락된 경우) 원인2) IIS가 설치되지 않은 상태에서 .NET 설치되면 IIS와 매핑하는데 문제가 생기므로 Framework가 정상적으로 설치가 되지 않음 해결 ) 명령프롬프트(관리자실행 - .NET 도구)를 실행 --> aspnet_regiis -i 를 실행하여 재설치 하자