일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- DataGrid
- 윈도우
- microsoft
- CONVERT()
- replace()
- javascript
- 자바스크립트
- ASP
- Winform
- c#
- IIS
- 윈폼
- jQuery
- 태그를 입력해 주세요.
- MS
- windows
- MSSQL
- attr()
- 이클립스
- 단축키
- SSRS
- oracle
- 마이크로소프트
- 리포팅서비스
- 비주얼스튜디오
- aspnet
- 프로시저
- Excel
- 엑셀
- 오라클
- Today
- Total
목록일(job)/MS(Microsoft) (138)
DJ메탈짱™의 Free Style
C# TextBox Width 속성설정하기(%) this.TextBox1.Width = Unit.Percentage(76);
[Enterprise Library를 이용한 트랜젝션 처리] public bool TransactionTest() { using (DbConnection connection = db.CreateConnection()) { connection.Open(); DbTransaction transaction = connection.BeginTransaction(); try { // first db.ExecuteNonQuery(firstCommand, transaction); // second db.ExecuteNonQuery(secondCommand, transaction); // commit the transaction transaction.Commit(); return true; } catch { // Ro..
VS2005빌드시 (.NET Framework 2.0) 경고 발생하는 경우. 'System.Configuration.ConfigurationSettings.AppSettings'은(는) 사용되지 않습니다. System.Configuration.ConfigurationSettings.AppSetting (VS2003) --> System.Configuration.ConfigurationManager.AppSettings (VS2005)
웹 표준을 위해 프로그램을 만들고 있는데요. ASP.NET에서 리스트에서 특정행의 이미지버튼(서버컨트롤)을 클릭하면 그 행에 해당되는 값을 업데이트해야 합니다. 그래서 이미지버튼을 숨기고 html 버튼에다가 스크립트를 연결하여 실제 숨겨진 이미지버튼에 코딩이 수행되게 하는데... 이상하게도 사파리나 IE에서는 잘 동작하는데 유독 파이어폭스에서는 버튼이 동작을 하지 않네요. 아래 스크립트 부분입니다. //일정 결과 완료처리 function Edtresult(key) { ans = confirm("선택일정을 완료하시겠습니까?"); if (ans == true) { document.all.txtSCHID.value = key; return true; } else { return false; } } 일반적인 스..
Request URL정보에 한글이 포함되는 경우 - 인코딩/디코딩 인코딩 : HttpContext.Current.Server.UrlEncode(xd980010.USERNAME) 디코딩 : HttpContext.Current.Server.UrlDecode(Session["USERNAME"].ToString())
프로그램을 확인하기 위해서 프로젝트를 연결하여 확인하고자 했는데 솔루션 또는 프로젝트 파일 선택시 언제 부터인가 아래와 같은 메시지가 발생되면서 프로젝트 파일이 오픈되지 않는 경우 해결한 방법입니다. URL 'http://localhost/WebUiDemo'의 웹 프로젝트를 만들거나 여는 동안 웹 서버가 다음 오류를 보고했습니다. 'The operation timed out'. 문제 : 솔루션 파일에 2개의 프로젝트를 포함시켜 사용했는데 잘됐었는데. 프로젝트를 오픈하려고 하면 위와 같은 메시지가 나오면서 웹 프로젝트가 오픈되지 않습니다. 해결 : 어떠한 이유인지는 모르겠지만 http://localhost 를 신뢰할수 있는 사이트로 등록해주므로 해서 해결됨.
DateTime startYMD=new DateTime(DateTime.Today.Year, DateTime.Today.Month, 1).AddMonths(-3).ToShortDateString() ; DateTime endYMD=new DateTime(DateTime.Today.Year,DateTime.Today.Month, DateTime.DaysInMonth(DateTime.Now.Year,DateTime.Now.Month)) ;
기준일 : 2007년12월18일 // 3개월 전 해당월의 시작일this.TextBox1.Text =new DateTime(DateTime.Today.Year, DateTime.Today.Month, 1). AddMonths(-3).ToShortDateString();결과 값 : 2007-09-01 // 현재월의 시작일this.TextBox1.Text =new DateTime(DateTime.Today.Year, DateTime.Today.Month, 1).ToShortDateString();결과값 : 2007-12-01
1. Namespace 선언2. StringHTML 메소드 생성3. 실재 사용하는 곳에서 태그가 있는 text를 넣어줌. - StripHTML(inputValue) ; using System.Text.RegularExpressions ; /// /// 2007/12/14 - add by bhchoi /// html 태그를 제거함. /// /// 입력값 /// string public static string StripHTML (string inputString) { return Regex.Replace(inputString,@"",string.Empty); } private void Page_Load(object sender, System.EventArgs e){ string test = StripHTM..
private void Page_Load(object sender, System.EventArgs e){ // 비활성화 되어 있는 컨트롤을 초기화 함. SetControl(this) ;} /// /// 2007/10/30 - add by bhchoi /// 비활성화 되어있는 컨트롤을 초기화 하도록 함. /// /// Control private void SetControl(Control Page) { foreach (Control ctrl in Page.Controls) { if (ctrl is TextBox) { if (((TextBox)(ctrl)).ReadOnly) // ReadOnly = True(필수입력아님)인 Textbox 값을 초기화 함. { ((TextBox)(ctrl)).Text = ""..