반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- xamarin.forms
- shared
- 프렌치프레스
- 커피풍미
- fso
- Classic ASP
- 드립 커피
- 태그를 입력해 주세요.
- 에스프레소
- Android
- Unity
- asp
- vbscript
- 제주도
- 여행
- 템플릿
- 커피
- 원두
- ServerVariables
- xamarin
- KO
- 커피역사
- 커피블로그
- xamarin.android
- 함수
- 로부스타
- KnockoutJS
- 자마린
- 아라비카
- NGUI
Archives
- Today
- Total
개발人
동적 인크루드
select case val case "1" server.execute("a.asp") case "2" server.execute("b.asp") end select
Classic ASP
2015. 5. 23. 23:00
이메일 유효성 체크
Function IsValidEmail(strEmail) Dim bIsValid bIsValid = True If Len(strEmail) < 5 Then bIsValid = False Else If Instr(1, strEmail, " ") 0 Then bIsValid = False Else If InStr(1, strEmail, "@", 1) < 2 Then bIsValid = False Else If InStrRev(strEmail, ".") < InStr(1, strEmail, "@", 1) + 2 Then bIsValid = False End If End If End If End If IsValidEmail = bIsValid End Function
Classic ASP
2015. 5. 23. 19:28
이동된 전 경로 알아내기
url = "http://"a = Request.ServerVariables ("HTTP_HOST")b = Request.ServerVariables("script_name")response.write url&a&b%>
Classic ASP
2015. 5. 23. 19:25
시간측정 타이머
위의꺼는 익스플로러의 상태창에 시간을 표시하는 거니깐,달리 응용하실수 있을꺼예요..
Classic ASP
2015. 5. 23. 19:24