일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 윈폼
- oracle
- 윈도우
- 엑셀
- DataGrid
- CONVERT()
- aspnet
- Excel
- 단축키
- replace()
- SSRS
- 오라클
- 리포팅서비스
- attr()
- 태그를 입력해 주세요.
- c#
- Winform
- javascript
- 이클립스
- ASP
- IIS
- 자바스크립트
- 비주얼스튜디오
- windows
- 마이크로소프트
- MS
- jQuery
- microsoft
- 프로시저
- MSSQL
- Today
- Total
DJ메탈짱™의 Free Style
Custom RecordSet (정적 레코드셋) 사용자에 의해 RecordSet을 생성하여 사용할 수 있도록 함. Function GetRecordset() Dim rs Set rs = server.CreateObject("ADODB.RECORDSET") rs.fields.append "Date",adVarChar,10 rs.fields.append "Time",adVarChar,11 rs.fields.append "From",adVarChar,129 rs.fields.append "To",adVarChar,129 rs.fields.append "Message",adVarChar,364 rs.Open for i = 1 to 50 rs.AddNew rs.Fields("Date") = "6/12/2004" ..
An error occurred on the server when processing the URL. Please contact the system administrator.If you are the system administrator please click here to find out more about this error.위와 같이 iis에서 asp 를 구동하는 경우 오류가 발생할때. asp가 던져주는 에러메시지를 원활하게 보여주지 않아 당황~~~~!!! 그럴때는 아래와 같은 명령어를 통해 asp 던져주는 제대로 된 에러메시지를 볼 수 있다. 닷넷 커맨드 창을 열어서 아래와 같이 입력하자. >>> 명령어 c:\>%windir%\system32\inetsrv\appcmd set config -sec..