티스토리 툴바

달력

052012  이전 다음

  •  
  •  
  • 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
  •  
  •  

검색해보니 onMouseOver=""... 이런 게 있었는데 막상 해보니 안 되더라. (뭘 잘못했을 수도 있지만...)

가장 좋은 방법은 area없는 경우 <a>태그를 다는 것이고.

area 영역이라면 아래와 같이...

<area shape="rect" coords="10.10.100.100" id="testPOP" href="#" onClick="alert('우아아');"/> 
 
href="#"으로 잡아주고 id를 통한 접근 혹은 onClick을 통한 실행을 시키면 된다. 
(단점: URL에 #이 계속 붙는다.)

* 참조: cursor="hand" 는 비표준이고, cursor="pointer" 가 표준이라고 한다.

 
Posted by 꼬꼬리코
AED 암호화 간단 예제

<%
'* 예제
Option Explicit
Session.CodePage=65001
Response.Charset="UTF-8"
%>
<!--#include virtual="include/aesLibrary.asp"-->
<%
Dim dataIn, encrypted, decrypted, password
if LCase(Request.ServerVariables("HTTP_METHOD"))="post" then
    dataIn=request.form("dataIn")
    password=request.form("password")
 
    encrypted = AESEncrypt(dataIn, password)
    decrypted = AESDecrypt(encrypted, password)
end if
%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">

<head>
<title>rodsdot.com :: AES encryption and decryption</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="author" content="Roderick Divilbiss">
<meta name="copyright" content="© 2005-2010 Roderick Divilbiss">
</head>

<body>
<form method="POST" action="AES.asp">
  <p>Data In<br><textarea rows="5" name="dataIn" cols="50"><%=dataIn%></textarea></p>
  <p>Password<br><input type="text" name="password" size="50" value="<%=password%>"></p>
  <p><input type="submit" value="Submit" name="B1"></p>
  <p>Encrypted<br><textarea rows="5" name="encrypted" cols="50"><%=encrypted%></textarea></p>
  <p>Decrypted<br><textarea rows="5" name="decrypted" cols="50"><%=decrypted%></textarea></p>
</form>
</body>
 
</html>
--------------------------------------------------------------------
출처: http://www.rodsdot.com/asp/AES-Encryption-Using-ASP.asp
--------------------------------------------------------------------
첨부파일 : 

 
Posted by 꼬꼬리코
(이 글은 검색 및 링크 포털용 목적으로 작성했습니다.)(액션 스크립트)

IE에서 파일 다운로드 후 플래시로 메뉴 이동버튼을 누르면 에러창이 뜨며 이동이 안 되는 문제가 발생.
이래저래 원인 찾지 못하고 있다가 검색어를 어떻게 해야할지 몰라서 못찾았던 것이 가장 큰 문제였던 거 같다.

그래서 내용을 따로 정리하기보다는 링크로 포털을 열어두려한다. 
여러가지 글들이 있지만 아래의 사례가 가장 좋은 예 였던 거 같다. 

http://kin.naver.com/qna/detail.nhn?d1id=1&dirId=1040202&docId=127797379&qb=RXh0ZXJuYWxJbnRlckZhY2UuY2FsbA==&enc=utf8&section=kin&rank=1&search_sort=0&spq=0&pid=gVV3qU5Y7vwsstu0dn8ssc--436340&sid=Tss3qfkVy04AABC0Euk

이것은 다른 링크 
http://wing_h.blog.me/150034634815

더 자세한건 'ExternalInterFace.call'로 검색하면 된다. 




Posted by 꼬꼬리코