aspにおけるcheckboxの使い方

814 ワード

ページの追加

<tr>
  <td width="12%" height="25" align="right">       :</td>
  <td width="88%"><input name="ShowIndex" type="checkbox" value="1">
</tr>

ページの編集

<tr>
  <td width="12%" height="25" align="right">       :</td>
  <td width="88%"><input name="ShowIndex" type="checkbox" value="1" <%'if rs("ShowIndex")=true then response.Write "checked" end if%>>
</tr>

値の取得方法

ShowIndex=Request.Form("ShowIndex")   '