DIM nNum1, nNum2
nNum1 = 1
nNum2 = 2

Function SetNum(byVal num1, byRef num2)
    num1 = 10 
    num2 = 20
End Function

CALL SetNum(nNum1, nNum2)

Response.Write nNum1 & "<BR>"
Response.Write nNum2

결과>
1
20

* byVal 는 값만 넘김. byRef 는 메모리 주소를 넘김.
반응형

"00001", "00002"  이런 식으로 값이 입력되는 필드가 있는데...
이것을 excel 로 저장하려고 하니 "1", "2" 이렇게 숫자로 인식된다.

이럴때는 
    Response.Write "00001"  이 것을

이렇게 출력하면 된다.
    Response.Write "=" & chr(34) & "00001" & chr(34)



반응형

// 밀리초를 시간으로 표시 (hh:mi:ss)
function DisplayTime(nMSec)
{
     var nTotalSec = parseInt(nMSec / 1000); 

     var nTotalMin = parseInt(nTotalSec / 60); 
     var nHour = parseInt(nTotalMin / 60);
     var nMin = nTotalMin % 60;
     var nSec = nTotalSec % 60; 

     return ( (nHour < 10) ? "0" : "" ) + nHour + ":" + ( (nMin < 10) ? "0" : "" ) + nMin + ":" + ( (nSec < 10) ? "0" : "" ) + nSec;
}
반응형

function CheckValue(strValue)
{
       var strReg = /^[A-Za-z0-9]+$/; 

       if (!  strReg.test(strValue) )
       {
alert('영문과 숫자만 입력가능합니다.');
return;
       }
}
반응형
IIS7 셋팅하려니 난감하다. 첨보는 현란한 UI
asp 로된 웹사이튼데 자꾸

HTTP 오류 404.3 - Not Found

확장 구성 때문에 요청한 페이지를 처리할 수 없습니다. 페이지가 스크립트인 경우 처리기를 추가하십시오. 파일을 다운로드해야 하는 경우 MIME 맵을 추가하십시오.

이런 오류가 발생한다.
asp 나 asp.net 사용시
iis7 이전 버젼에서는 웹 서비스 확장 메뉴에서
Acitve Server Pages 또는 닷넷 사용시 ASP.NET 을 허용으로해주면 되는데


iis7은 이게 없다.  그래서 한참 찾았다...


제어판 > 프로그램 > 프로그램 및 기능 > Windows 기능 사용/사용 안 함 > 인터넷 정보 서비스 > World Wide Web 서비스 > 응용 프로그램 개발 기능 을 선택하면 위 같은 화면이 뜬다. 사용하는 웹소스에 따라 ASP 나 ASP.NET을 선택해주면 된다.


* 참고 : http://learn.iis.net/page.aspx/562/classic-asp-is-not-installed-by-default-on-iis-70-and-iis-75/

반응형
CSS Properties 입니다.
즐겨 찾기에 등록해 놓고 수시로 참고하면 좋겠네요...ㅋㅋ

http://www.htmldog.com/reference/cssproperties/

반응형

이렇게 많은 태그들이 있을 줄이야.. 헐~

http://www.htmldog.com/reference/htmltags/
반응형

AS2 까지는 "_root.name" 이렇게 사용가능했지만. AS3부터는 안된다.
_root 대신 FlashVars 라는 것을 사용한다.

<script language="javascript">
 if (AC_FL_RunContent == 0) {
  alert("This page requires AC_RunActiveContent.js.");
 } else {
  AC_FL_RunContent(
   'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
   'width', '550',
   'height', '400',
   'src', 'VideoPlayerExample',
   'quality', 'high',
   'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
   'align', 'middle',
   'play', 'true',
   'loop', 'true',
   'scale', 'showall',
   'wmode', 'window',
   'devicefont', 'false',
   'id', 'VideoPlayerExample',
   'bgcolor', '#ffffff',
   'name', 'VideoPlayerExample',
   'menu', 'true',
   'allowFullScreen', 'false',
   'allowScriptAccess','sameDomain',
   'movie', 'VideoPlayerExample',
   'salign', '',
   'FlashVars', 'linkurl=http://shared.co.kr'
   ); //end AC code
 }
</script>
<noscript>
 <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="550" height="400" id="VideoPlayerExample" align="middle">
 <param name="allowScriptAccess" value="sameDomain" />
 <param name="allowFullScreen" value="false" />
 <param name="movie" value="VideoPlayerExample.swf" FlashVars="linkurl=http://shared.co.kr" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /> <embed src="VideoPlayerExample.swf" quality="high" bgcolor="#ffffff" width="550" height="400" name="VideoPlayerExample" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
 </object>
</noscript>

우선 위처럼 FlashVars 값을 입력해주고..
AS3 에서는

var linkUrl:String = loaderInfo.parameters.linkurl;

요렇게 사용하면 된다.
반응형
SUB QueryStringParser(strStr, arrName(), arrValue())
 
 DIM nNextStartPoint, sItem, nValuePoint, nCount, sValue
 nNextStartPoint = 0 : nCount = 0
 
 DO UNTIL Instr(strStr, "&") = 0
   nNextStartPoint = instr(strStr, "&")
  sItem =  LEFT(strStr, nNextStartPoint )
  nValuePoint = instr(sItem, "=")
  arrName(nCount) = LEFT(sItem, nValuePoint - 1)
  arrValue(nCount) = MID(sItem, nValuePoint+1, len(sItem) - (nValuePoint+1))
  strStr = MID(strStr, nNextStartPoint+1)
 
  nCount = nCount + 1
 LOOP
 
 sItem = strStr
 nValuePoint = instr(sItem, "=")
 arrName(nCount) = LEFT(sItem, nValuePoint - 1)
 arrValue(nCount) = MID(sItem, nValuePoint+1)
 
END SUB


예 >
DIM arrName(10), arrValue(10), nCount, strQueryString

strQueryString = "1=a&2=b&3=c"
CALL  QueryStringParser( strQueryString , arrName, arrValue)

nCount = 0
DO UNTIL arrName(nCount) = ""
          Response.Write arrName(nCount) & " : " & arrValue(nCount) & "<br>"
          nCount = nCount + 1
LOOP

결과 >
1 : a
2 : b
3 : c
반응형

자바스크립트로 쿼리스트링 값 받아오기...흠.

function GetParameter(sName)
{

 var sUrl = location.href;
 var nStartPoint = sUrl.indexOf("?");
 var sQueryStr = sUrl.substring(nStartPoint + 1, sUrl.length);
 var arrName = new Array();
 var arrValue = new Array();
 var nNextStartPoint = 0;
 var sItem;
 var nValuePoint;
 
 while (sQueryStr.indexOf("&") > -1)
 {

  nNextStartPoint = sQueryStr.indexOf("&")
  sItem = sQueryStr.substring(0, nNextStartPoint);
  nValuePoint = sItem.indexOf("=");
  arrName[arrName.length] = sItem.substring(0, nValuePoint);
  arrValue[arrValue.length] = sItem.substring(nValuePoint+1, sItem.length);
  sQueryStr = sQueryStr.substring(nNextStartPoint+1, sQueryStr.length);

 }
 
 sItem = sQueryStr;
 nValuePoint = sItem.indexOf("=");
 arrName[arrName.length] = sItem.substring(0, nValuePoint);
 arrValue[arrValue.length] = sItem.substring(nValuePoint+1, sItem.length);
 
 var sValue = "";
 for(var cnt = 0; cnt < arrName.length; cnt++)
 {
       if (arrName[cnt] == sName)
      {
                sValue = arrValue[cnt];
      }
 
 }
 
 return sValue;

}

 예> ..../test.html?params=1234 

GetParameter("params");     // 결과 : 1234

반응형

+ Recent posts