일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 오라클
- 엑셀
- IIS
- 비주얼스튜디오
- 윈폼
- c#
- 리포팅서비스
- 태그를 입력해 주세요.
- 마이크로소프트
- windows
- attr()
- aspnet
- Winform
- 자바스크립트
- microsoft
- 이클립스
- Excel
- jQuery
- MS
- SSRS
- javascript
- 단축키
- oracle
- 윈도우
- MSSQL
- DataGrid
- CONVERT()
- 프로시저
- ASP
- replace()
- Today
- Total
목록일(job)/MS(Microsoft) (138)
DJ메탈짱™의 Free Style
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 를 실행하여 재설치 하자
private string StripHTML(string htmlString) { //This pattern Matches everything found inside html tags; //(.|\n) - > Look for any character or a new line // *? -> 0 or more occurences, and make a non-greedy search meaning //That the match will stop at the first available '>' it sees, and not at the last one //(if it stopped at the last one we could have overlooked //nested HTML tags inside a big..
// 2011/07/13 - LINQ query (SUM)var tSum =from p in db.TBSimulation // from절ywhere p.USERID == this.hdUSERID.Text && p.GROUPID == "A" // where절yselect p.RESULT; // select절y // Total Profit this.lblTPROFIT.Text = tSum.Sum().ToString();
// LINQ query (SUM) var tSum = from p in db.TBSimulation // from절 where p.USERID == "" // where절 group p by new { p.GROUPID,p.USERID } into grouping // group by select new // sum column { grouping.Key, Totalprice = grouping.Sum(p => p.RESULT) }; // sum값 바인딩 foreach (var grp in tSum) { this.lblTPROFIT.Text = grp.Totalprice.ToString(); }
Textbox 배경색 code-behind에서 변경하는 방법 this.txtUSERID.BackColor = Color.FromArgb(240, 240, 240); this.txtUSERID.BackColor = ColorTranslator.FromHtml("#F0F0F0");
DataGrid 안에 라디오버튼 한개만 선택하게 // 내용: 콜백목록에 있는 라디오버튼을 하나만 클릭되도록 함.// 작성자: 최보현(bhchoi@00db.co.kr)// 작성일: 2010/12/04functionSelectOne(rdo,gridName){/* Getting an array of all the "INPUT" controls on the form.*/all = document.getElementsByTagName("input");for(i=0;i{if(all[i].type=="radio") /*Checking if it is a radio button*/{/*I have added '__ctl' ASP.NET adds '__ctl' to all the controls of DataGrid.*..