날짜 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 198건 4 페이지
  • RSS
기술자료 목록
138
ClassicASP   17788  2012-06-11 12:09 ~ 2012-06-11 00:00  
137
ClassicASP   13608  2012-06-11 06:55  
136
ClassicASP   13350  2012-05-30 19:50  
135
ClassicASP   24222  2012-05-21 20:28  
134
ClassicASP   18645  2012-05-18 17:28  
133
ClassicASP   19655  2012-05-18 14:28 ~ 2012-05-25 00:00  
132
ClassicASP   20088  2012-04-27 02:31  
131
ClassicASP   53559  2012-04-24 17:51 ~ 2013-05-12 00:00  
130
ClassicASP   15165  2012-04-19 02:17  
열람
ClassicASP   15232  2012-04-18 13:41 ~ 2016-03-30 00:00  
128
ClassicASP   25593  2012-04-17 22:22 ~ 2018-07-10 13:40  
127
ClassicASP   13824  2012-04-17 13:55  
126
ClassicASP   20855  2012-04-02 09:26  
125
ClassicASP   15126  2012-04-01 17:00  
124
ClassicASP   15909  2012-04-01 09:14 ~ 2012-04-01 00:00  
123
ClassicASP   19900  2012-03-27 13:14  
122
ClassicASP   26453  2012-03-26 20:16  
121
ClassicASP   14836  2012-03-24 01:04 ~ 2012-07-30 00:00  
120
ClassicASP   12172  2012-03-23 23:12  
119
ClassicASP   15912  2012-03-23 21:03 ~ 2013-11-06 00:00  

검색

해피정닷컴 정보

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

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