Jul 20 2009

Basit Bir Form İpucu

Gönderen : Oğuz Demirkapı (2:13 PM)
0 yorum
- Kategori : CSS | HTML

CfCube.com

Formlarımızda yer alan "checkbox" yada "radio button" için tanımlı olan açıklamaya tıklayarak gerekli kutucukların seçilmesini sağlamak olanaklı.

<form action="#cgi.script_name#" method="post">
   ColdFusion kodlama için hangi editörü kullanmaktasınız?
   
<br />
   
<input type="checkbox" name="editor" id="editor-dw" value="dw" />
   
<label for="editor-dw">Dreamweaver</label>
   
<br />
   
<input type="checkbox" name="editor" id="editor-hs" value="hs" />
   
<label for="editor-hs">Homesite/CF Studio</label>
   
<br />
   
<input type="checkbox" name="editor" id="editor-cfeclipse" value="cfeclipse" />
   
<label for="editor-cfeclipse">CFEclipse</label>
   
<br />
   
<input type="checkbox" name="editor" id="editor-notepad" value="notepad" />
   
<label for="editor-notepad">Notepad</label>
   
<br />
   
<input name="gönder" type="submit" value="Gönder!" />
</form>

Yorumlar

Yorumunuzu YazInIz



(daha sonra görüntülenmeyecek)