Results 1 to 2 of 2

Thread: How to Build a Dynamic Checkbox ?

  1. #1
    Join Date
    Jan 2009
    Posts
    22

    How to Build a Dynamic Checkbox ?

    How to Build a Dynamic Checkbox ? I want to populate checkbox dynamically in ASP

    Can anyone know coding for this ?


    Thanks

  2. #2
    Join Date
    May 2008
    Posts
    29

    Re: How to Build a Dynamic Checkbox ?

    This code will help you populate your checkbox dynamically and will show you a customized message based on your selection.

    Code:
    <html>
    <body>
    You have a form with checkboxes that you want to populate dynamically. Here's one way... 
    
    <%orderStatus = Request.Form("status")
    'taking the value of status
    <form action="process.asp" action="post">
    <input type="checkbox" name="status" value=1 >
    <% If orderStatus = "1" Then Response.Write "CHECKED" %>>Car<br>
    'checking the value if it is one writing that you had checked car
    <input type="checkbox" name="status" value=2 >
    <% If orderStatus = "2" Then Response.Write "CHECKED" %>>Scooter<br>
    'checking the value if it is two writing that you had checked scooter <input type="checkbox" name="status" value=3 >
    <% If orderStatus = "3" Then Response.Write "CHECKED" %>>None<br>
    </form>
    
    
    The value of orderStatus determines which checkbox was checked.
    </body>
    </html>

Similar Threads

  1. CheckBox in SilverLight
    By KALYAN23 in forum Software Development
    Replies: 6
    Last Post: 17-08-2010, 05:19 PM
  2. Flash CheckBox in Flex
    By AARON Carter in forum Windows Software
    Replies: 6
    Last Post: 15-07-2010, 11:24 AM
  3. Hidden Checkbox Grayed Out
    By Waman in forum Operating Systems
    Replies: 3
    Last Post: 22-10-2009, 11:21 AM
  4. add Checkbox in Ms Excel spreadsheet
    By Novino in forum Windows Software
    Replies: 4
    Last Post: 02-09-2009, 09:43 PM
  5. Input Type Checkbox
    By raviranch in forum Software Development
    Replies: 5
    Last Post: 14-04-2009, 03:07 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,490,803.64705 seconds with 17 queries