반응형
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
- #db#order#by
- #자바스크립트#alert
- #C언어#do#while#계산기
- #alert#자바스크립트#radio#check
- #db#where
- #html#프레임
- #jQuery#mouse#over
- #자바스크립트#텍스트#알람#alert
- #자바스크립트#회원가입#유효성#검사
- #자바스크립트#만년달력#달력
- #db#froup#by
- #db#데이터베이스#select
- #select#from#distinct
- #C언어#do#while#계산기#함수
- #C언어#사각형
- #C언어#for#간단#예제
- #클릭#숨기기#보이기
- #getElementById#id
- #C언어#scanf#fflush
- #alert#자바스크립트#checkbox#alert
- #자바스크립트#시계#실시간시계
- #db#join#inner#cross
- #html#테이블#table
- #자바스크립트#접속시간#시간
- #C언어#switch#case#계산기#함수
- #C언어#숫자비교#삼항연산자
- #C언어#타입#printf
- #C언어#if
- #C언어#성적처리#점수#등급
- #증감#연산자
Archives
- Today
- Total
선택장애
ASP - 값을 받아서 check box, select box 체크 되어있기 본문
반응형
check box 변수로 checked 해주기
<tr>
<td>
<input type="checkbox" <% If 변수 = "Y" Then %>checked<% End If %>>
<input type="checkbox" <% If 변수 = "N" Then %>checked<% End If %>>
</td>
</tr>
select box 변수로 selected 해주기
<select>
<option value="1" <%If 변수 ="1" Then%>selected<%End if%>>변수1</option>
<option value="2" <%If 변수 ="2" Then%>selected<%End if%>>변수2</option>
<option value="3" <%If 변수 ="3" Then%>selected<%End if%>>변수3</option>
<option value="4" <%If 변수 ="4" Then%>selected<%End if%>>변수4</option>
</select>
반응형
'ASP' 카테고리의 다른 글
ASP - 내 ip에서만 확인 해보기 (0) | 2020.08.25 |
---|---|
ASP - 클릭하면 이미지 바꾸기 + <tr> 바꾸기 (0) | 2020.08.10 |
ASP - 글자 자르기 (LEFT, MID, RIGHT) (0) | 2020.08.10 |
ASP - 쿼리 조회해서 값이 있을 때 없을 때 구분해줄 때 (0) | 2020.08.10 |
ASP - 소스에서 날짜형식 보기좋게하기(LEFT, MID) (0) | 2020.08.06 |