날짜 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,641건 76 페이지
  • RSS
기술자료 목록
1141
HTML   24386  2012-05-02 20:26 ~ 2018-02-23 22:53  
1140
그누보드   18392  2012-05-01 22:12  
1139
메이크샵   26617  2012-05-01 10:58  
1138
HTML   15954  2012-04-29 17:33 ~ 2019-06-18 10:16  
1137
HTML   24762  2012-04-28 23:27 ~ 2018-06-20 23:57  
1136
ClassicASP   20095  2012-04-27 02:31  
1135
JavaScript   15278  2012-04-26 12:06 ~ 2012-05-26 00:00  
1134
전자결제   31458  2012-04-26 00:36  
1133
ClassicASP   53571  2012-04-24 17:51 ~ 2013-05-12 00:00  
1132
JavaScript   40582  2012-04-24 00:22  
1131
메이크샵   14941  2012-04-23 17:44 ~ 2013-08-16 00:00  
1130
메이크샵   11786  2012-04-23 17:44  
1129
그누보드   10894  2012-04-23 11:44  
1128
일반   13805  2012-04-22 18:38  
1127
Adobe   12125  2012-04-22 15:43  
1126
메이크샵   10813  2012-04-20 23:32  
1125
JavaScript   36158  2012-04-19 23:06 ~ 2012-06-22 00:00  
1124
ClassicASP   15183  2012-04-19 02:17  
1123
etc언어   23802  2012-04-18 18:32 ~ 2016-11-07 00:00  
열람
ClassicASP   15250  2012-04-18 13:41 ~ 2016-03-30 00:00  

검색

해피정닷컴 정보

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

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