일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Winform
- replace()
- Excel
- microsoft
- 엑셀
- c#
- 리포팅서비스
- oracle
- DataGrid
- 자바스크립트
- 단축키
- SSRS
- attr()
- 윈도우
- 프로시저
- CONVERT()
- 비주얼스튜디오
- windows
- 태그를 입력해 주세요.
- 오라클
- 마이크로소프트
- MSSQL
- MS
- 윈폼
- ASP
- 이클립스
- jQuery
- javascript
- IIS
- aspnet
- Today
- Total
목록태그를 입력해 주세요. (18)
DJ메탈짱™의 Free Style
8시간 후의 날짜와 시간을 10분 단위로 반환 DECLARE @SENDDATE DATETIME SET @SENDDATE = dateadd(hh,8, getdate()) SELECT @SENDDATE SELECT RIGHT('0'+ CONVERT(VARCHAR, datepart(hh,@SENDDATE)),2) + RIGHT('0'+ CONVERT(VARCHAR, (datepart(mi,@SENDDATE)/10)*10),2) 결과값--------------------------2008-11-20 05:01:28.557--------------------------0500--------------------------
1. Procedure Create/************************************************************************************* ' Procedure Name : sp_SelectTableColumnInfo ' Written date : 2007.03.22 ' Writer : Bo H. Choi ' Contents : Table Information Select ( Column Name, Data Type, Column Length ) ' Updated by : ' Updated date : ' Updated contents : ' Sample : Table Choice + Shortcut Excute ( Tools > Customize > S..
Form 객체의 모든 ID와 Value을 출력한다. For i=1 To Request.Form.Countresponse.write " ID : " & Request.Form.Key(i) & " | Value : " & Request.Form(i)Next 주의) 배열 index는 "1"부터 시작함.
ASP 페이지의 오류 메시지가 안보이는 경우... 간혹 ASP로 작업한 페이지의 오류가 뜨질 않고 단순히 i페이지를 표시할 수 없습니다.연결하려는 페이지에 문제가 있어 표시할 수 없습니다.다음을 시도해 보십시오.어쩌구저쩌구 사이트 홈 페이지를 열고 원하는 정보가 있는 링크를 검색하십시오. 새로 고침 단추를 클릭하거나 나중에 다시 시도하십시오. 인터넷에서 정보를 찾으려면 검색을 클릭하십시오.관련 사이트 목록을 참고할 수 있습니다. HTTP 500 - 내부 서버 오류 Internet Explorer 위와 같은 식의 오류가 뜨는 경우 상당히 곤혹 스러운 경우가 있다. 일단 꽁수로는 저 페이지가 열린 상태에서 해당 에러가 나는 페이지의 모든 코드를 복사해 놓고 모두 지운후(일반적으로 잘라내기) 아무 글씨나 쓴뒤..
// 폴더생성private void button1_Click(object sender, EventArgs e){string folderUrl = this.textBox1.Text;string folderNm = "test";for (inti = 1; i < 1000; i++){Directory.CreateDirectory(folderUrl + "\\"+ folderNm + "_" + i.ToString());}this.label3.Text = "Directory Create OK";}// 파일생성private void button2_Click(object sender, EventArgs e){string folderUrl = this.textBox1.Text;string folderNm = "test";..
// 사용자매뉴얼 설정$("#logon_manual").click(function(){ $(location).attr("href",http://서버IP/downloadfile.aspx?fname=SJCRM_Manual.pdf);});-------------------------------------------------------------------- downloadfile.aspx--------------------------------------------------------------------
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.*..
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 = ""..