사용자 삽입 이미지
1,000만 넘은 거니까 다들 보셨겠죠~~

음 그냥 그럭저럭 잼나게 봤는데~~~

좀 억지스런 스토리에...

돈을  많이 썼다고 들은거  같은데 저예산 영화같은 분위기... 

특히 훈련중 떨어지는 사고에서 CG는 최악 이네요...

가격 : ★★★☆☆ (별3개)

   - 총평 : 비교적 볼만 했습니다. 하지만... 부족한~~~

반응형

'영화이야기' 카테고리의 다른 글

킬러들의 수다.[2001]  (0) 2008.02.15

마지막 달의 날자를 구하는 함수 입니다..

Function getTotalMonthDay( strMonth, strYear)
    Dim result = 0

    select case strMonth
    case "1" ,"3", "5", "7", "8", "10", "12"
        result = 31
    case "4", "6", "9", "11"
        result = 30
    case "2"
        if ((strYear mod 4) = 0 and (strYear mod 100) <> 0) or (strYear mod 400) = 0 then
            result = 29
        else
            result = 28
        end if
    end select

     getTotalMonthDay= result

End Function

반응형
ASP.Net 을 하실때

아래와 같은 오류가 났을때 처리법입니다..
Failed to execute request because the App-Domain could not be created. Error: 0x80131902


  1. With a command window, get to the latest version of .net under
  2. C:\Windows\Microsoft.Net\Framework\
  3. Now run the following command: "net stop w3svc" to stop web services.
  4. Then use "aspnet_regiis.exe -ua" to uninstall all instances of ASP.NET from IIS. (제거 합니다.)
  5. Follow with "aspnet_regiis.exe -i" to install ASP.NET into IIS. (다시 설치 합니다.)
  6. Now restart web services with "net start w3svc".


이렇게 해주시면 됩니다. ^^

반응형

+ Recent posts