블로그 이미지
Sunny's

calendar

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

Notice

'ASP'에 해당되는 글 4

  1. 2011.07.04 ASP Excel Export 시 IIS 셋팅
  2. 2009.10.22 fckeditor ASP 사용
  3. 2009.09.29 aspJSON1
  4. 2009.09.02 ASP KMSThumbNail 썸네일 컴포넌트
2011. 7. 4. 17:36 ASP.NET

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.

asp 페이지 실행시 브라우저에 위와같은 에러가 발생하였다~
해결책은....
IIS에서 ASP메뉴에서 디버깅속성의 브라우져로 오류전송 값을 false를 ture로 변경하면 된다는......
posted by Sunny's
2009. 10. 22. 03:04 ETC

출 처 : http://maestroys.tistory.com/entry/fckeditor%EC%82%AC%EC%9A%A9%EB%B2%95ASP
1. 우선 fckeditor을 현재 사이트에다가 올린다.(대부분 root경로에 올림)
2. /fckeditor/fckeditor.asp파일을 연다.
- 손을 댈 부분은 여기밖에 없다...(다른부분도 있겠지만 해보지 않았음...^^;)
 Private Sub Class_Initialize()
  sBasePath  = "/fckeditor/"
  sWidth   = "100%"          'width값을 조정한다.
  sHeight   = "200"            'height값을 조정한다.
  sToolbarSet  = "Default"
  sValue   = ""                 '기본값을 지정한다.


3. /fckeditor/fckconfig.js 파일을 연다.
- 상단에 있는 탭들을 정리할수 있다.에디터 상단 탭..(레프트정렬/라이트 정렬등등)을 필요위주로 정리할필요가 있다..(로딩이 굉장히 느리다..이 에디터..최대의 단점이라고 할수있음).
FCKConfig.ToolbarSets["Default"] = [
 ['Source','DocProps','-','Save','NewPage','Preview','-','Templates'],
 ['Cut','Copy','Paste','PasteText','PasteWord','-','Print','SpellCheck'],
 ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
 ['Form','Checkbox','Radio','TextField','Textarea','Select','Button','ImageButton','HiddenField'],
 '/',
 ['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'],
 ['OrderedList','UnorderedList','-','Outdent','Indent','Blockquote'],
 ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'],
 ['Link','Unlink','Anchor'],
 ['Image','Flash','Table','Rule','Smiley','SpecialChar','PageBreak'],
 '/',
 ['Style','FontFormat','FontName','FontSize'],
 ['TextColor','BGColor'],
 ['FitWindow','ShowBlocks','-','About']  // No comma for the last row.
] ;

- 굉장히 중요한 부분이다..에디터에서 엔터키를 치면 <p>로 되는데 이걸 <br>로 해주는 기능이다. 이것때문에 굉장히 애먹었던적이 있다.
FCKConfig.EnterMode = 'p' ;   // p | div | br

- 랭기지 부분을 asp로 바꿔준다.
var _FileBrowserLanguage = 'php' ; // asp | aspx | cfm | lasso | perl | php | py
var _QuickUploadLanguage = 'php' ; // asp | aspx | cfm | lasso | perl | php | py

4. fckeditor/editor/filemnager/connectors/asp/config.asp파일을 연다.
-  이부분을 true로 바꿔준다..이것때문에 파일 업로드 안되서 한참 고생했다.
Dim ConfigIsEnabled
ConfigIsEnabled = False

- 파일 업로드 경로를 적어준다.^^
Dim ConfigUserFilesPath
ConfigUserFilesPath = "/userfiles/"



*//2008/01/11추가
/////////////////////////////////////////////////////////////////////////////////////////////////
//입력체크를 하고 싶을 경우
if(FCKeditorAPI.GetInstance('textarea이름').GetXHTML(true) == ""){
   alert("내용을 입력해주세요.");
   FCKeditorAPI.GetInstance('textarea이름').Focus();
   return false;
  }
/////////////////////////////////////////////////////////////////////////////////////////////////



posted by Sunny's
2009. 9. 29. 11:27 Ajax
posted by Sunny's
2009. 9. 2. 09:38 ETC

아래의 링크에서 가져가세요..

썸네일 컴포넌트 받기

KMSThumbNail은 이미지(TIF, TIFF, GIF, JPG, JPEG, BMP, PNG) 파일을 썸네일파일(JPG, GIF)로 만들어 주는 ActiveX Dll입니다.

예제)

---------------------------------------------------------------------------------------------------------

Dim FName

Dim TestThumb



FName = Server.MapPath (".\") & "\test.BMP" '이미지 파일의 절대 경로



Set TestThumb = Server.CreateObject("KMSThumb.Thumb")

TestThumb.FileName = FName '절대경로를 넘겨줌

'절대 경로가 없으면 썸네일 파일이 만들어지지 않습니다.



TestThumb.Width = 100 '생성될 썸네일의 가로 크기를 지정(default 100)

' Width 는 1~999까지 가능



TestThumb.Height = 100 '생성될 썸네일의 세로 크기를 지정(default 100)

' Height 는 1~999까지 가능



TestThumb.Quality = 100 '생성될 썸네일의 이미지 Quality(JPG로 생성시만 적용)(default 100)

' Quality 는 1~999까지 가능 - 100이상이면 의미가 없습니다.



TestThumb.ImgGB = 1 '1이면 JPG, 2이면 GIF로 썸네일 생성(default 1)



TestThumb.ImgScale = 2 '2이면 Scale Mode, 1이면 지정한 Height, Width로 썸네일 생성(default 1)

'원본 1000,1500의 이미지가 있을시 100,100으로 썸네일을 생성하면 이미지의 세로가 축소 변경이 된다.

'위의 이미지는 100, 150으로 생성을 하면 이미지 변경없이 썸네일의 이미지가 만들어질 것이다.

'그래서 ImgScale란 것을 만들어 보았다.

'ImgScale가 2이면 이 방법이 적용이 된다.

'원본의 이미지와, 생성될 썸네일의 이미지를 비교하여 가로,세로중 썸네일 이미지가 큰 것의 길이에 따른다.

' ex) 1000,500 을 100,100으로 적용하면(ImgScale = 2)

' -> 100,50 으로 썸네일 이미지가 생성이 된다.

' ex2) 500,1000 을 100,100으로 적용하면(ImgScale = 2)

' -> 50,100 으로 썸네일 이미지가 생성이 된다.
posted by Sunny's
prev 1 next