Get Checkbox "Checked" value on form submit

Ask a Question related to ASP, Design and Development.

  1. #1

    Default Get Checkbox "Checked" value on form submit

    How do I get whether a checkbox is ticked in a form on a form's submission
    (true or false)? How do I use the Request object in ASP?


    John E Guest

  2. Similar Questions and Discussions

    1. onchange="this.form.submit()" trouble
      Happy New Year Everone I have a two select drop down menu. The first populates the second. Problem: After i attach the submit button the page...
    2. CheckBoxes in DataGrids-- the "checked" attribute not correct after posting page?
      Hi everyone, I'm using a DataGrid with TemplateColumns. My DataGrid is located in a cell of an asp:Table. I did this so it's positioned...
    3. Acrobat Form Submit error: changes VALUE="true" to "0"
      I wrote an HTML page with a form. In the form I had many inputs as in: <INPUT TYPE="radio" NAME="Q1" VALUE="true"> and <INPUT TYPE="radio"...
    4. #25366 [NEW]: form buttons of type "image" dont send "submit" $_POST variable in IE
      From: jordanolsommer at imap dot cc Operating system: Windows XP PHP version: 4.3.2 PHP Bug Type: Variables related Bug...
  3. #2

    Default Re: Get Checkbox "Checked" value on form submit

    Well, this should work

    <%
    If request.form("thecheckbox") <> "" Then Response.write "Yes, it was
    checked." %>

    That's assuming you gave your checkbox a value greater than "".

    Ray at work

    "John E" <La-la-land@hotmail.com> wrote in message
    news:be1hnt$7vct$1@ID-83837.news.dfncis.de...
    > How do I get whether a checkbox is ticked in a form on a form's submission
    > (true or false)? How do I use the Request object in ASP?
    >
    >

    Ray at Guest

  4. #3

    Default Re: Get Checkbox "Checked" value on form submit

    "John E" <La-la-land@hotmail.com> writes:
    > How do I get whether a checkbox is ticked in a form on a form's submission
    > (true or false)?
    onsubmit="if(this.form.elements['checkboxName'].checked){alert('Check!');}"
    > How do I use the Request object in ASP?
    I have never used ASP, but the code I have been subjected to just
    said something like
    Request.blah
    That is how you access it in Javascript. What its properties are,
    I leave to the ASP-group to answer.

    /L
    --
    Lasse Reichstein Nielsen - [email]lrn@hotpop.com[/email]
    Art D'HTML: <URL:http://www.infimum.dk/HTML/randomArtSplit.html>
    'Faith without judgement merely degrades the spirit divine.'
    Lasse Reichstein Nielsen Guest

  5. #4

    Default Re: Get Checkbox "Checked" value on form submit

    I DECLARE LIKE THIS

    Code:
    dim checked
    If request.form ="VALUE" Then
     checked = " checked=""checked"" "
    End If
    THEN IN THE CHECK BOX

    Code:
    <input type=""checkbox"" name=""CHCKBOXNAME"" value=""VALUE"" "&checked&" />
    Brion Lion Zion is offline Junior Member
    Join Date
    Mar 2011
    Posts
    1

  6. #5

    Default Get Checkbox "Checked" value on form submit

    I have never used ASP, but the code I have been subjected to just
    said something like
    Request.blah
    That is how you access it in Javascript. What its properties are,
    I leave to the ASP-group to answer.
    Deri6ck78 is offline Junior Member
    Join Date
    Oct 2011
    Posts
    12

  7. #6

    Default Re: Get Checkbox "Checked" value on form submit

    The Route Islands are generally situated a handful of miles in the coast with France though over 80 miles from britain.Jersey lies in the Fresh of Mont E Michel as well as being the largest for the Channel Iss.It calculates ten mileage east for you to west not to mention six stretches north that will south.Through the parapets about Mont Orgueil Castle into the gentle sweep from the bay outside, its hard to imagine a additional peaceful not to mention tranquil of the islands.Transport in order to Jersey is available by prepare ferry as well as air.<br />
    <br />
    Many experts have an island for about eight 1, 000 years.Jerseys landscape plus the character regarding its ?ndividuals are forged from centuries for battles, search, struggle together with reinvention, abandoning a completely unique legacy involving history, traditions and history.<br />
    <br />
    The earliest evidence of human activity on the island goes to about two hundred and fifty thousand years back.Bands associated with hunters employed the caves in La Cotte de E Brelade as being a base to get hunting big.There ended up being sporadic activity in your community by nomadic bands and artists of hunters before introduction connected with settled communities on the Neolithic time, which can be marked by way of the building from the ritual funeral sites identified as dolmens.Archaeological evidence signifies that there ended up trading back-links with Brittany and therefore the south sea-coast of England do your best.<br />
    <br />
    William the Conqueror, Duke of Normandy, penetrated and taken England inside 1066.Your French full later occupied and harnessed Normandy through 1204.The Islanders thought we would stay controlled by the Overhead of The united kingdomt.in return for his or her loyalty, the Hawaiian islands were permitted to retain their particular government and in many cases today these are not legally perhaps the United Empire or europe.<br />
    <br />
    Tax law regulations have built the Approach Islands a serious financial heart and home many wealthy United kingdom people.Duty free of cost goods can be bought on ferries into the Channel Of the islands, but not really on ferries to be able to France.<br />
    <br />
    A vacation in Jacket is advisable one year of the majority.It has become a favourite using the discerning trip explorer.Visiting perhaps the British isles using an independent heart all its, you don't need passports and you shouldn't have to modification money.There exists accommodation to accomodate all.It includes wide versatility.It is normally good value and good quality throughout.It is just a great destination to see and even spend a holiday or a quick break given it offers soft sand beaches, castles along with history.
    salewatches is offline Junior Member
    Join Date
    Dec 2011
    Location
    The five Street NewYork NewYork USA 10021
    Posts
    8

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139