날짜 select 의 option 쉽게 설정하기 > 기술자료 | 해피정닷컴

날짜 select 의 option 쉽게 설정하기 > 기술자료

본문 바로가기

사이트 내 전체검색

날짜 select 의 option 쉽게 설정하기 > 기술자료

ClassicASP 날짜 select 의 option 쉽게 설정하기

페이지 정보


본문

form 문에서 select 로 년/월/일 선택하는 창 만들때 현재 날짜 기준으로 선택되도록 할때 불편하죠,
그것을 for 문으로 이용해서 간단히 해결하는 로직입니다.

[ 방법 1]

<% Option Explicit %>
<% dim i %>

<select name="r_year" size="1" style="font-size:9pt;">
    <% for i = year(now) to 2005 step -1 %>
  <option value="<% response.write i %>" <% if year(date) = i then %> selected <% end if %>><% response.write i %></option>
  <% next %>
</select>년 

<select name="r_month" size="1" style="font-size:9pt;">  
    <% for i = 1 to 12 step 1 %>
    <option value="<% response.write i %>" <% if month(date) = i then %> selected <% end if %>><% response.write i %></option>
    <% next %>      
</select>월 

<select name="r_day" size="1" style="font-size:9pt;">  
  <% for i = 1 to 31%>
  <option value="<% response.write i %>" <% if day(date) = i then %> selected <%end if%>><% response.write i %></option>
  <% next %>        
</select>일


[ 방법 2]

  <select name="r_year">
    <option value="2006">2006</option>
    <option value="2007">2007</option>
  </select>년
  <select name="r_month">
    <%
      for i = 1 to 12
      response.write "<option value='" & i & "'"
      if i = Month(now) then
        response.write "selected"
      end if
      response.write ">" & i & "</option>"
      next
    %>
  </select>월
  <select name="r_day">
    <%
      for i = 1 to 31
      response.write "<option value='" & i & "'"
      if i = day(now) then
      response.write "selected"
      end if
      response.write ">" & i & "</option>"
      next
    %>
    </select>일

댓글목록

등록된 댓글이 없습니다.


Total 2,643건 77 페이지
  • RSS
기술자료 목록
1123
etc언어   24174  2012-04-18 18:32 ~ 2016-11-07 00:00  
열람
ClassicASP   15518  2012-04-18 13:41 ~ 2016-03-30 00:00  
1121
ClassicASP   30501  2012-04-17 22:22 ~ 2018-07-10 13:40  
1120
SNS   14080  2012-04-17 21:59  
1119
ClassicASP   14094  2012-04-17 13:55  
1118
Editor   24834  2012-04-16 23:44  
1117
전자결제   13552  2012-04-16 04:35 ~ 2015-03-18 00:00  
1116
그누보드   15048  2012-04-13 13:27  
1115
Editor   35451  2012-04-13 06:02  
1114
WindowsServer   18425  2012-04-12 23:59  
1113
WindowsServer   47943  2012-04-12 23:49  
1112
전자결제   24140  2012-04-09 23:39 ~ 2021-11-19 11:19  
1111
영카트   17388  2012-04-07 14:13 ~ 2015-01-23 00:00  
1110
JavaScript   15608  2012-04-06 21:01  
1109
PHP   46086  2012-04-05 00:46  
1108
PHP   43016  2012-04-04 23:04  
1107
PHP   17594  2012-04-04 22:15 ~ 2021-01-18 12:04  
1106
그누보드   13090  2012-04-30 22:42  
1105
그누보드   9309  2013-04-29 14:50  
1104
JavaScript   19402  2012-04-02 15:14  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2025 해피정닷컴. All Rights Reserved.