일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- IIS
- 리포팅서비스
- Excel
- 자바스크립트
- attr()
- 엑셀
- windows
- 마이크로소프트
- 태그를 입력해 주세요.
- ASP
- Winform
- 윈도우
- 비주얼스튜디오
- c#
- MSSQL
- aspnet
- 단축키
- MS
- 윈폼
- javascript
- DataGrid
- SSRS
- 오라클
- replace()
- 프로시저
- 이클립스
- CONVERT()
- jQuery
- oracle
- microsoft
- Today
- Total
목록일(job) (369)
DJ메탈짱™의 Free Style
// 사용자매뉴얼 설정$("#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.*..
NET Framework 다운로드 링크 http://msdn.microsoft.com/ko-kr/netframework/aa569264.aspx