Add 메서드

         :   키-항목 쌍을 Dictionary 개체에 추가합니다.

문법    :   object.Add key, item

구성요소

설   명

object

필수적인 요소. 항상 Dictionary 개체의 이름입니다.

key

필수적인 요소. 추가할 item과 연관된 key입니다.

item

필수적인 요소. 추가할 key와 연관된 item입니다.

설명

해당 key가 이미 있으면 오류가 발생합니다.
아래 예제는 Add 메서드 사용법을 보여줍니다:

     Dim d                                                       '변수를 작성합니다.
     Set d = CreateObject("Scripting.Dictionary")
     d.Add "a", "Athens"                                   '키와 항목을 추가합니다.
     d.Add "b", "Belgrade"
     d.Add "c", "Cairo"

- Exists 메서드

        :  Dictionary 개체에 지정한 키가 있으면 True를, 없으면 False를 반환합니다.

문법   :  object.Exists(key)

구성요소

설   명

object

필수적인 요소. 항상 Dictionary 개체의 이름입니다.

key

필수적인 요소. Dictionary 개체에서 찾을 key 값입니다.

설명

아래 예제는 Exists 메서드 사용법을 보여줍니다.
    Function KeyExistsDemo
         Dim d, msg                                           '변수를 작성합니다.
         Set d = CreateObject("Scripting.Dictionary")
         d.Add "a", "Athens"                               '키와 항목을 추가합니다.
         d.Add "b", "Belgrade"
         d.Add "c", "Cairo"
         If d.Exists("c") Then
                  msg = "지정한 키가 있습니다."
         Else
                  msg = "지정한 키가 없습니다."
         End If
         KeyExistsDemo = msg
    End Function

- Items 메서드

        :  Dictionary 개체의 모든 항목이 들어있는 배열을 반환합니다.

문법   :   object.Items
               object는 항상 Dictionary 개체의 이름입니다.

설명

아래 코드에서는 Items 메서드의 사용 방법을 보여줍니다.
       Function DicDemo
              Dim a, d, i, s                                     '변수를 작성합니다.
              Set d = CreateObject("Scripting.Dictionary")
              d.Add "a", "Athens"                           '키와 항목을 추가합니다.
              d.Add "b", "Belgrade"
              d.Add "c", "Cairo"

              a = d.Items                                       '항목을 가져옵니다.
              For i = 0 To d.Count -1                     '배열을 반복합니다.
                     s = s & a(i) & "<BR>"                  '반환 문자열을 작성합니다.
              Next
              DicDemo = s
       End Function

- Keys 메서드

        :   Dictionary 개체에 있는 모든 키를 포함하는 배열을 반환합니다.

문법   :   object.Keys
              object는 항상 Dictionary 개체의 이름입니다.

설명

아래 코드에서는 Keys 메서드의 사용 방법을 보여줍니다.
     Function DicDemo
          Dim a, d, i                                        '변수를 작성합니다.
          Set d = CreateObject("Scripting.Dictionary")
          d.Add "a", "Athens"                         '키와 항목을 추가합니다.
          d.Add "b", "Belgrade"
          d.Add "c", "Cairo"
          a = d.Keys                                     '키를 가져옵니다.
          For i = 0 To d.Count -1                   '배열을 반복합니다.
               s = s & a(i) & "<BR>"                   '결과를 반환합니다.
          Next
          DicDemo = s
     End Function

- Remove 메서드

        : Dictionary 개체에서 키-항목 쌍을 제거합니다.

문법   : object.Remove(key)

구성요소

설   명

object

필수적인 요소. 항상 Dictionary 개체의 이름입니다.

key

필수적인 요소. key 구성 요소는 Dictionary 개체에서 제거할 키-항목 쌍과 연관된 키입니다.

설명

지정된 키-항목 쌍이 없는 경우 오류가 발생합니다.
아래 코드에서는 Remove 메서드의 사용 방법을 보여줍니다.

      Dim a, d                                                 '변수를 작성합니다.
      Set d = CreateObject("Scripting.Dictionary")
      d.Add "a", "Athens"                               '키와 항목을 추가합니다.
      d.Add "b", "Belgrade"
      d.Add "c", "Cairo"
      ...
      a = d.Remove("b")                                  '둘째 쌍을 제거합니다.

- RemoveAll 메서드

        : RemoveAll 메서드는 Dictionary 개체에서 키-항목 쌍을 제거합니다.

문법   : object.RemoveAll
            object는 항상 Dictionary 개체의 이름입니다.

설명

아래 코드에서는 RemoveAll 메서드의 사용 방법을 보여줍니다.
       Dim a, d, i                         '변수를 작성합니다.
       Set d = CreateObject("Scripting.Dictionary")
       d.Add "a", "Athens"             '키와 항목을 추가합니다.
       d.Add "b", "Belgrade"
       d.Add "c", "Cairo"
       ...
       a = d.RemoveAll             '사전을 지웁니다. 

'Source Storage > Programming' 카테고리의 다른 글

Microsoft Log Parser 2.2  (0) 2008.03.28
Windows Server 2008 Release  (0) 2007.10.02
JavaScript String Object  (0) 2007.07.31
날이면 날마다 까먹는 정규식 구성요소 (RegExp)  (0) 2007.04.18
HTML 특수문자 코드표  (0) 2007.03.21
Log Parser 2.2

Brief Description
Log parser is a powerful, versatile tool that provides universal query access to text-based data such as log files, XML files and CSV files, as well as key data sources on the Windows® operating system such as the Event Log, the Registry, the file system, and Active Directory®.

Overview

Log parser is a powerful, versatile tool that provides universal query access to text-based data such as log files, XML files and CSV files, as well as key data sources on the Windows® operating system such as the Event Log, the Registry, the file system, and Active Directory®. You tell Log Parser what information you need and how you want it processed. The results of your query can be custom-formatted in text based output, or they can be persisted to more specialty targets like SQL, SYSLOG, or a chart.

Most software is designed to accomplish a limited number of specific tasks. Log Parser is different... the number of ways it can be used is limited only by the needs and imagination of the user. The world is your database with Log Parser.

System Requirements

  • Supported Operating Systems: Windows 2000; Windows Server 2003; Windows XP Professional Edition

Log Parser Examples

Search for Data

Search for the logons of a specific user among the events in the Windows Event Log:

C:\>LogParser "SELECT TimeGenerated, SourceName,
EventCategoryName, Message INTO report.txt FROM Security WHERE
EventID = 528 AND SID LIKE '%TESTUSER%'" -resolveSIDs:ON

And obtain results in a text file formatted as desired:

사용자 삽입 이미지

Create Reports

Create custom-formatted HTML reports:

사용자 삽입 이미지

Calculate Statistics

Calculate the distribution of the HTTP response status codes from your IIS log files:

C:\>LogParser "SELECT sc-status, COUNT(*) AS Times INTO Chart.gif
FROM <1> GROUP BY sc-status ORDER BY Times DESC" –
chartType:PieExploded3D -chartTitle:"Status Codes"

And produce a chart formatted as desired:

사용자 삽입 이미지

---------------------------------
MS에서 만든 IIS 로그용 분석 프로그램... 쿼리를 이용해서 로그를 만드는거 같은데... 이게 웹에서 컨트럴이 가능하다면.... 좋겠구만.. 암튼 좀 더 봐야 할듯.. 웹컨트럴과 웹에서 그래픽등의 출력만 지원한다면 .. 좋.겠.다.
DOWNLOAD LINK  EXAMPLES LINK

'Source Storage > Programming' 카테고리의 다른 글

ASP Dictionary Object  (0) 2008.04.07
Windows Server 2008 Release  (0) 2007.10.02
JavaScript String Object  (0) 2007.07.31
날이면 날마다 까먹는 정규식 구성요소 (RegExp)  (0) 2007.04.18
HTML 특수문자 코드표  (0) 2007.03.21
사용자 삽입 이미지 사용자 삽입 이미지

Windows Server 2008 Release Candidate: System Requirements and Installation Documentation


Quick Details
Version: 3.0
Date Published: 9/24/2007
Language: English
Download Size: 44 KB - 95
*Download size depends on selected download components.


Overview

For important information you should know prior to deploying and using the Microsoft Windows Server 2008 operating system, including known issues, see readme.htm on this page. You should familiarize yourself with all of the known issues listed in that document prior to installing the software.

For late-breaking issues that you might need to address after installing this release candidate of the Windows Server 2008 operating system, see relnotes.htm on this page. Unless otherwise specified, these notes apply to all versions and editions of Windows Server 2008. The release notes file will be continuously updated until the next release is available and a new release notes document is published.



System Requirements

  • Supported Operating Systems: Longhorn (Windows Code Name)
Internet Explorer



Instructions

1. Click the Download button on this page to start the download.
2. Do one of the following:
a) To start the installation immediately, click Open or Run this program from its current location.
b) To copy the download to your computer for installation at a later time, click Save or Save this program to disk.


What Others Are Downloading

Others who downloaded Windows Server 2008 Release Candidate: System Requirements and Installation Documentation also downloaded:
  1. Windows Server 2008 RC0 Standard Edition
  2. Windows Web Server 2008 RC0
  3. Microsoft Virtual Server 2005 R2 SP1 - Enterprise Edition
  4. Windows Server 2008 RC0 Datacenter
  5. Microsoft Windows Server 2008 Beta 3 VHD (Full Installation)

'Source Storage > Programming' 카테고리의 다른 글

ASP Dictionary Object  (0) 2008.04.07
Microsoft Log Parser 2.2  (0) 2008.03.28
JavaScript String Object  (0) 2007.07.31
날이면 날마다 까먹는 정규식 구성요소 (RegExp)  (0) 2007.04.18
HTML 특수문자 코드표  (0) 2007.03.21
String 객체의 모든 메소드
Method Description FF N IE
anchor() Creates an HTML anchor 1 2 3
big() Displays a string in a big font 1 2 3
blink() Displays a blinking string 1 2  
bold() Displays a string in bold 1 2 3
charAt() Returns the character at a specified position 1 2 3
charCodeAt() Returns the Unicode of the character at a specified position 1 4 4
concat() Joins two or more strings 1 4 4
fixed() Displays a string as teletype text 1 2 3
fontcolor() Displays a string in a specified color 1 2 3
fontsize() Displays a string in a specified size 1 2 3
fromCharCode() Takes the specified Unicode values and returns a string 1 4 4
indexOf() Returns the position of the first occurrence of a specified string value in a string 1 2 3
italics() Displays a string in italic 1 2 3
lastIndexOf() Returns the position of the last occurrence of a specified string value, searching backwards from the specified position in a string 1 2 3
link() Displays a string as a hyperlink 1 2 3
match() Searches for a specified value in a string 1 4 4
replace() Replaces some characters with some other characters in a string 1 4 4
search() Searches a string for a specified value 1 4 4
slice() Extracts a part of a string and returns the extracted part in a new string 1 4 4
small() Displays a string in a small font 1 2 3
split() Splits a string into an array of strings 1 4 4
strike() Displays a string with a strikethrough 1 2 3
sub() Displays a string as subscript 1 2 3
substr() Extracts a specified number of characters in a string, from a start index 1 4 4
substring() Extracts the characters in a string between two specified indices 1 2 3
sup() Displays a string as superscript 1 2 3
toLowerCase() Displays a string in lowercase letters 1 2 3
toUpperCase() Displays a string in uppercase letters 1 2 3
toSource() Represents the source code of an object 1 4 -
valueOf() Returns the primitive value of a String object 1 2 4

String 객체의 모든 속성들
Property Description FF N IE
constructor A reference to the function that created the object 1 4 4
length Returns the number of characters in a string 1 2 3
prototype Allows you to add properties and methods to the object 1 2 4
기호      의미
c         특수문자가 아니라면 문자 c를 한 번 매치한다.
^         줄의 시작을 매치한다.
.         새 라인이 아닌 모든 문자를 매치한다
$         줄의 끝을 매치한다
|         식들의 논리 OR
()        그룹 표현
[]        문자 클래스 정의
*         0번 또는 그 이상의 매치
+         1번 또는 그 이상의 매치
?         0 또는 1번의 매치
{n}       표현식을 n번 매치
{n,}      표현식을 최소한 n번 매치
{n, m}    최소 n번에서 최대 m번까지 매치하는 식
\d        숫자
\D        숫자를 제외한 문자
\w        _을 포함한 알파벳 문자
\W        알파벳이 아닌 문자
\s        공백 문자(\t, \n, \r, \f)
\S        공백 문자가 아닌 것
\t        탭
\n        새 라인
\r        캐리지 리턴
\f        폼 피드(Form Feed)
\m        메타 문자(^, ., $, |, (), [], *, +, ?, \, or /)들을 이스케이프

어딘가에서 쌔벼온 특수문자 코드표.. 이젠 가끔 이런거 찾는게 더 힘들다..

표현문자

숫자표현

문자표현

설명

-

&#00;-&#08;

-

사용하지 않음

space

&#09;

-

수평탭

space

&#10;

-

줄 삽입

-

&#11;-&#31;

-

사용하지 않음

space

&#32;

-

여백

!

&#33;

-

느낌표

"

&#34;

&quot;

따옴표

#

&#35;

-

숫자기호

$

&#36;

-

달러

%

&#37;

-

백분율 기호

&

&#38;

&amp;

Ampersand

'

&#39;

-

작은 따옴표

(

&#40;

-

왼쪽 괄호

)

&#41;

-

오른쪽 괄호

*

&#42;

-

아스트릭

+

&#43;

-

더하기 기호

,

&#44;

-

쉼표

-

&#45;

-

Hyphen

.

&#46;

-

마침표

/

&#47;

-

Solidus (slash)

0 - 9

&#48;-&#57;

-

0부터 9까지

:

&#58;

-

콜론

;

&#59;

-

세미콜론

<

&#60;

&lt;

보다 작은

=

&#61;

-

등호

>

&#62;

&gt;

보다 큰

?

&#63;

-

물음표

@

&#64;

-

Commercial at

A - Z

&#65;-&#90;

-

A부터 Z까지

[

&#91;

-

왼쪽 대괄호

\

&#92;

-

역슬래쉬

]

&#93;

-

오른쪽 대괄호

^

&#94;

-

탈자부호

_

&#95;

-

수평선

`

&#96;

-

Acute accent

a - z

&#97;-&#122;

-

a부터 z까지

{

&#123;

-

왼쪽 중괄호

|

&#124;

-

수직선

}

&#125;

-

오른쪽 중괄호

~

&#126;

-

꼬리표

-

&#127;-&#159;

-

사용하지 않음

&#160;

&nbsp;

Non-breaking space

¡

&#161;

&iexcl;

거꾸로된 느낌표

&#162;

&cent;

센트 기호

&#163;

&pound;

파운드

¤

&#164;

&curren;

현재 환율

&#165;

&yen;

|

&#166;

&brvbar;

끊어진 수직선

§

&#167;

&sect;

섹션 기호

¨

&#168;

&uml;

움라우트

&#169;

&copy;

저작권

ª

&#170;

&ordf;

Feminine ordinal

&#171;

&laquo;

왼쪽 꺾인 괄호

&#172;

&not;

부정

­

&#173;

&shy;

Soft hyphen

?

&#174;

&reg;

등록상표

&hibar;

&#175;

&macr;

Macron accent

°

&#176;

&deg;

Degree sign

±

&#177;

&plusmn;

Plus or minus

²

&#178;

&sup2;

Superscript two

³

&#179;

&sup3;

Superscript three

´

&#180;

&acute;

Acute accent

μ

&#181;

&micro;

Micro sign (Mu)

&#182;

&para;

문단기호

·

&#183;

&middot;

Middle dot

¸

&#184;

&cedil;

Cedilla

¹

&#185;

&sup1;

Superscript one

º

&#186;

&ordm;

Masculine ordinal

&#187;

&raquo;

오른쪽 꺾인 괄호

¼

&#188;

&frac14;

4분의 1

½

&#189;

&frac12;

2분의 1

¾

&#190;

&frac34;

4분의 3

¿

&#191;

&iquest;

거꾸로된 물음표

A

&#192;

&Agrave;

Capital A, grave accent

A

&#193;

&Aacute;

Capital A, acute accent

A

&#194;

&Acirc;

Capital A, circumflex accent

A

&#195;

&Atilde;

Capital A, tilde

A

&#196;

&Auml;

Capital A, dieresis or umlaut mark

A

&#197;

&Aring;

Capital A, ring (Angstrom)

Æ

&#198;

&AElig;

Capital AE diphthong (ligature)

C

&#199;

&Ccedil;

Capital C, cedilla

E

&#200;

&Egrave;

Capital E, grave accent

E

&#201;

&Eacute;

Capital E, acute accent

E

&#202;

&Ecirc;

Capital E, circumflex accent

E

&#203;

&Euml;

Capital E, dieresis or umlaut mark

I

&#204;

&Igrave;

Capital I, grave accent

I

&#205;

&Iacute;

Capital I, acute accent

I

&#206;

&Icirc;

Capital I, circumflex accent

I

&#207;

&Iuml;

Capital I, dieresis or umlaut mark

Ð

&#208;

&ETH;

Capital Eth, Icelandic

N

&#209;

&Ntilde;

Capital N, tilde

O

&#210;

&Ograve;

Capital O, grave accent

O

&#211;

&Oacute;

Capital O, acute accent

O

&#212;

&Ocirc;

Capital O, circumflex accent

O

&#213;

&Otilde;

Capital O, tilde

O

&#214;

&Ouml;

Capital O, dieresis or umlaut mark

×

&#215;

&times;

Multiply sign

Ø

&#216;

&Oslash;

width="130"Capital O, slash

U

&#217;

&Ugrave;

Capital U, grave accent

U

&#218;

&Uacute;

Capital U, acute accent

U

&#219;

&Ucirc;

Capital U, circumflex accent

U

&#220;

&Uuml;

Capital U, dieresis or umlaut mark

Y

&#221;

&Yacute;

Capital Y, acute accent

Þ

&#222;

&THORN;

Capital Thorn, Icelandic

ß

&#223;

&szlig;

Small sharp s, German (sz ligature)

a

&#224;

&agrave;

Small a, grave accent

a

&#225;

&aacute;

Small a, acute accent

a

&#226;

&acirc;

Small a, circumflex accent

a

&#227;

&atilde;

Small a, tilde

a

&#228;

&auml;

Small a, dieresis or umlaut mark

a

&#229;

&aring;

Small a, ring

æ

&#230;

&aelig;

Small ae diphthong (ligature)

c

&#231;

&ccedil;

Small c, cedilla

e

&#232;

&egrave;

Small e, grave accent

e

&#233;

&eacute;

Small e, acute accent

e

&#234;

&ecirc;

Small e, circumflex accent

e

&#235;

&euml;

Small e, dieresis or umlaut mark

i

&#236;

&igrave;

Small i, grave accent

i

&#237;

&iacute;

Small i, acute accent

i

&#238;

&icirc;

Small i, circumflex accent

i

&#239;

&iuml;

Small i, dieresis or umlaut mark

ð

&#240;

&eth;

Small eth, Icelandic

n

&#241;

&ntilde;

Small n, tilde

o

&#242;

&ograve;

Small o, grave accent

o

&#243;

&oacute;

Small o, acute accent

o

&#244;

&ocirc;

Small o, circumflex accent

o

&#245;

&otilde;

Small o, tilde

o

&#246;

&ouml;

Small o, dieresis or umlaut mark

÷

&#247;

&divide;

Division sign

ø

&#248;

&oslash;

Small o, slash

u

&#249;

&ugrave;

Small u, grave accent

u

&#250;

&uacute;

Small u, acute accent

u

&#251;

&ucirc;

Small u, circumflex accent

u

&#252;

&uuml;

Small u, dieresis or umlaut mark

y

&#253;

&yacute;

Small y, acute accent

þ

&#254;

&thorn;

Small thorn, Icelandic

y

&#255;

&yuml;

Small y, dieresis or umlaut mark

IIS의 디폴트 버퍼가 작아서 큰 데이터가 리퀘스트 될때 에러가 납니다. 그게 파일이던 폼 데이터이던 간에 한방에 에러를 잡아봅시다.


1. IIS6.0 콘솔에서 컴퓨터이름 > 속성 > 메타베이스 직접 편집 허용 체크합니다.

2. C:WINDOWSsystem32InetsrvMatabase.xml 을 NotePad로 엽니다.

3. AspBufferingLimit="4194304" 값을 크게 변경

4. AspMaxRequestEntityAllowed="204800" 값을 크게 변경

5. IIS를 Reset 한 후 확인해보십시오.
서버에 오피스2003이 깔려있는 관계로 CreateObject("Excel.Application") 명령어를 써서
엑셀파일을 업로드 하여 DB를 통채로 갈아엎어볼라고 했더만
난데없는 권한오류가 떡하니 나타난거시당...

한참을 삽질후에 GOOGLE을 거쳐 WROX사이트에서 답을 발견하였으니..

어쨋던 이래서 난 빨간책 팬인가보다...

http://p2p.wrox.com/topic.asp?TOPIC_ID=24857

1. From command prompt type "dcomcnfg.exe"

2. You will see Component Management window

3. Component Services --> Computer--> My Computer--> DComConfig

4. From the tree view select Microsoft Excel Application?

5. Right-Click on it & select Properties.

6. From the property window select the Security Tab.

7. Then for all the three options select Customize Radio button (or according to your need)

8. Add ASPNET user account to all the three

9. Give appropriate permission to them

10. Then click Apply.


짤없음.. 앞으로 다른 DCOM 서비스도 문제가 되면 한방에 ^^

2003은 당췌 파고 또 파도... 알수가 없는게 너무 많다.
- FCKeditor (http://sourceforge.net/projects/fckeditor/)
* IE의 Editor Object 를 이용하여 제작
* jsp, php, asp에 대응하는 이미지 업로드 및, 브라우징 기능
* 미리 정의된 3가지 형태의 툴바 형태제공
* 간편하게 기존 소스에 추가 가능
* 테이블 편집 기능 지원
* 타 사이트 내용 copy&paste시 이미지 경로 변경 필요
* 다양한 언어 지원(한글포함)
* 완성도 높음.. 강추!

- HTMLarea (http://sourceforge.net/projects/itools-htmlarea)
* 이미지 업로드 지원 안함
* 풀스크린 편집 지원
* 영문메뉴만 지원
* 타 사이트 내용 copy&paste시 이미지 경로 변경 필요 없음
* PHP Image Editor 지원 (http://sourceforge.net/projects/imgmngedt/)
* 한글화 및 이미지업로드만 커스터마이징하면 FCK에 떨어지지 않을듯

- SPAW web-based WYSIWYG editor control (http://sourceforge.net/projects/spaw/)
* 예쁜 디자인
* 이미지 라이브러리 기능
* 이미지 업로드 지원 안함
* 타 사이트 내용 copy&paste시 이미지 경로 변경 필요 없음
* 디자인만 놓고 보면 최고! 그러나 이미지삽입부분이 맘에 들지 않고, 사소한 버그가 좀 있는듯.

- hypertextarea (http://sourceforge.net/projects/hypertextarea/)
* 기본적인 기능만 제공
* 이미지 업로드 지원 안함
* 심플한 디자인
* 타 사이트 내용 copy&paste시 이미지 경로 변경 필요 없음
* 바로 갖다 쓰기엔 스크립트에러의 압박이 심함..

- RichText-editor (http://sourceforge.net/projects/richtext/)
* 브라우저 언어설정이 한글인경우 문제있음(한글지원 커스터마이징 필요)
* 이미지 업로드 지원 안함
* 타 사이트 내용 copy&paste시 이미지 경로 변경 필요 없음
* 한때는 꽤 잘나가는 녀석이었는데... 이제는 경쟁력이 떨어짐.. 가져다 쓰려면 고쳐야 할것도 많음.

- aynHTML (http://sourceforge.net/projects/aynhtml/)
* 이미지업로드 지원
* 이미지 저장소 지원
* 깔끔한 디자인
* 타 사이트 내용 copy&paste시 이미지 경로 변경 필요 없음
* 나름대로 깔끔함.. 소스보기시 컬러링도 해주고.. 간단히 쓰기엔 좋을듯

- XsDhtmlEditor (http://sourceforge.net/projects/xsdheditor/)
* 심플한 디자인
* 이미지 업로드 지원
* 타 사이트 내용 copy&paste시 이미지 경로 변경 필요 없음
* 바로 쓰기에는 버그가 좀 있음.

- bpEditor ( http://sourceforge.net/projects/bpeditor/)
* 만들다 만듯..ㅡㅡ


출처 : http://tong.nate.com/kiskim/7016143
ASP 0100 메모리 부족
ASP 0101 예기치 않은 오류
ASP 0102 문자열 입력 예상
ASP 0103 정수 입력 예상
ASP 0104 작업을 허용하지 않음
ASP 0105 범위를 벗어난 색인
ASP 0106 형식 불일치
ASP 0107 스택 오버플로
ASP 0108 개체 만들기 실패
ASP 0109 구성원 없음
ASP 0110 알 수 없는 이름
ASP 0111 알 수 없는 인터페이스
ASP 0112 매개 변수 없음
ASP 0113 스크립트 시간 초과
ASP 0114 개체가 빈 스레드가 아님
ASP 0115 예기치 않은 오류
ASP 0116 스크립트 닫기 구문 기호 없음
ASP 0117 스크립트 닫기 태그 없음
ASP 0118 개체 닫기 태그 없음
ASP 0119 클래스 ID 또는 프로그램 ID 특성 없음
ASP 0120 잘못된 Runat 특성
ASP 0121 개체 태그의 잘못된 영역
ASP 0122 개체 태그의 잘못된 영역
ASP 0123 ID 특성 없음
ASP 0124 언어 특성 없음
ASP 0125 특성 닫기 없음
ASP 0126 포함 파일이 없음
ASP 0127 HTML 설명 닫기 없음
ASP 0128 파일 또는 가상 특성 없음
ASP 0129 알 수 없는 스크립트 언어
ASP 0130 잘못된 파일 특성
ASP 0131 허용되지 않은 상위 경로
ASP 0132 컴파일 오류
ASP 0133 잘못된 클래스 ID 특성
ASP 0134 잘못된 프로그램 ID 특성
ASP 0135 순환적 포함
ASP 0136 잘못된 개체 인스턴스 이름
ASP 0137 잘못된 글로벌 스크립트
ASP 0138 중첩된 스크립트 블록
ASP 0139 중첩된 개체
ASP 0140 잘못된 페이지 명령
ASP 0141 반복된 페이지 명령
ASP 0142 스레드 토큰 오류
ASP 0143 잘못된 응용 프로그램 이름
ASP 0144 초기화 오류
ASP 0145 새 응용 프로그램 실패
ASP 0146 새 세션 실패
ASP 0147 500 서버 오류
ASP 0148 서버 사용량이 많음
ASP 0149 응용 프로그램 다시 시작
ASP 0150 응용 프로그램 디렉터리 오류
ASP 0151 변경 알림 오류
ASP 0152 보안 오류
ASP 0153 스레드 오류
ASP 0154 HTTP 헤더 쓰기 오류
ASP 0155 페이지 컨텐트 쓰기 오류
ASP 0156 헤더 오류
ASP 0157 버퍼링 설정
ASP 0158 URL 없음
ASP 0159 버퍼링 해제
ASP 0160 로그 버퍼 꽉 참
ASP 0161 데이터 형식 오류
ASP 0162 쿠키를 수정할 수 없음
ASP 0163 잘못된 콤마 사용
ASP 0164 잘못된 시간 제한 값
ASP 0165 SessionID 오류
ASP 0166 초기화되지 않은 개체
ASP 0167 세션 초기화 오류
ASP 0168 허용되지 않는 개체 사용
ASP 0169 없는 개체 정보
ASP 0170 세션 삭제 오류
ASP 0171 경로 없음
ASP 0172 잘못된 경로
ASP 0173 잘못된 경로 문자
ASP 0174 잘못된 경로 문자
ASP 0175 허용되지 않는 경로 문자
ASP 0176 경로 찾을 수 없음
ASP 0177 Server.CreateObject 실패
ASP 0178 Server.CreateObject 액세스 오류
ASP 0179 응용 프로그램 시작 오류
ASP 0180 허용되지 않는 개체 사용
ASP 0181 잘못된 스레드 모델
ASP 0182 없는 개체 정보
ASP 0183 빈 쿠키 키
ASP 0184 쿠키 이름 없음
ASP 0185 기본 등록 정보 없음
ASP 0186 인증서 구문 분석 오류
ASP 0187 개체 추가 충돌
ASP 0188 허용되지 않는 개체 사용
ASP 0189 허용되지 않는 개체 사용
ASP 0190 예기치 않은 오류
ASP 0191 예기치 않은 오류
ASP 0192 예기치 않은 오류
ASP 0193 OnStartPage 실패
ASP 0194 OnEndPage 실패
ASP 0195 잘못된 서버 방법 호출
ASP 0196 독립 프로세스 구성 요소를 시작할 수 없음
ASP 0197 허용되지 않는 개체 사용
ASP 0198 Server shutting down
ASP 0199 허용되지 않는 개체 사용
ASP 0200 범위를 벗어난 '만료 날짜' 특성
ASP 0201 잘못된 기본 스크립트 언어
ASP 0202 코드 페이지 없음
ASP 0203 잘못된 코드 페이지
ASP 0204 잘못된 CodePage 값
ASP 0205 알림 바꿈
ASP 0206 BinaryRead을 호출할 수 없음
ASP 0207 Request.Form을 사용할 수 없음
ASP 0208 일반 Request 수집을 사용할 수 없음
ASP 0209 TRANSACTION 속성의 잘못된 값
ASP 0210 구현되지 않은 방법
ASP 0211 영역을 벗어난 개체
ASP 0212 버퍼를 지울 수 없음
ASP 0214 잘못된 경로 매개 변수
ASP 0215 ENABLESESSIONSTATE 속성의 잘못된 값
ASP 0216 MSDTC 서비스를 실행하고 있지 않음
ASP 0217 개체 태그의 잘못된 영역
ASP 0218 LCID가 없음
ASP 0219 잘못된 LCID
ASP 0220 GLOBAL.ASA 에 대한 요청이 허용되지 않음
ASP 0220 스크립트를 트랜잭션하지 않음
ASP 0221 잘못된 @ Command 디렉티브
ASP 0222 잘못된 형식 라이브러리 지정
ASP 0223 형식 라이브러리를 찾을 수 없음
ASP 0224 형식 라이브러리를 로드할 수 없음
ASP 0225 형식 라이브러리가 래핑될 수 없음
ASP 0226 StaticObjects를 수정할 수 없음
ASP 0227 Server.Execute 실패
ASP 0228 Server.Execute 오류
ASP 0229 Server.Transfer 실패
ASP 0230 Server.Transfer 오류
ASP 0231 Server.Execute 오류
ASP 0232 잘못된 쿠키 사양
ASP 0233 쿠키 스크립트 소스를 로드할 수 없음
ASP 0234 잘못된 include 지시어
ASP 0235 Server.Transfer 오류
ASP 0236 잘못된 쿠키 사양
ASP 0237 잘못된 쿠키 사양
ASP 0238 없는 특성값
ASP 0239 파일을 처리할 수 없음
ASP 0240 스크립트 엔진 예외
ASP 0241 CreateObject 예외
ASP 0242 OnStartPage 인터페이스 예외 쿼리
ASP 0243 Global.asa에 있는 잘못된 METADATA 태그
ASP 0243 Request에서 IStream을 사용할 수 없음
ASP 0244 세션 상태를 사용할 수 없음
ASP 0246 동시 사용자 수가 너무 많음. 나중에 다시 연결해 보십시오.
ASP 0246 잘못된 기본 코드 페이지

+ Recent posts