Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_components thread: how an unchecked checkbox returns a value into a request.Form collection?


Message #1 by "despoina" <pomf70@h...> on Mon, 23 Sep 2002 23:15:36
Sorry guys!!!! this is a very big problem for me!. It would be very 
appreciated if someone helped me!!
The problem is that i want my checkeboxes to be "seen" (or return a value 
or "viewed" - as you like it!!) by the Request.Form collection   even if  
they are not checked. Please, how could  i do that? thank you very much 
for your time! 
Gus
Message #2 by "Dragan Loncar" <draganl@s...> on Mon, 23 Sep 2002 19:30:43 -0400
Hi
If you may check boxes  like this
<input type ="checkbox" name="Mycheckbox" value="check1"> checkbox 1
<input type ="checkbox" name="Mycheckbox" value="check2"> checkbox 2
<input type ="checkbox" name="Mycheckbox" value="check3"> checkbox 3
this return  value of checkboxes
<%
for each strcheck in request.form("Mycheckbox")
    response.write strcheck
next
I hope it will help you


%>

----- Original Message -----
From: "despoina" <pomf70@h...>
To: "ASP components" <asp_components@p...>
Sent: Monday, September 23, 2002 11:15 PM
Subject: [asp_components] how an unchecked checkbox returns a value into a
request.Form collection?


> Sorry guys!!!! this is a very big problem for me!. It would be very
> appreciated if someone helped me!!
> The problem is that i want my checkeboxes to be "seen" (or return a value
> or "viewed" - as you like it!!) by the Request.Form collection   even if
> they are not checked. Please, how could  i do that? thank you very much
> for your time!
> Gus
>
%%email.unsub%%
>
>


Message #3 by "k" <pomf70@h...> on Tue, 24 Sep 2002 03:11:33 +0300
hi!!!Thank you very much for your time!! You gave me an nice idea with your
code!
I'm grateful! Bye
Message #4 by "Adrian Forbes" <adrian.forbes@n...> on Tue, 24 Sep 2002 09:28:00 +0100
http://www.aspfree.com/authors/adrian/#MultipleCheckbox

-----Original Message-----
From: despoina [mailto:pomf70@h...]
Sent: Monday, September 23, 2002 11:16 PM
To: ASP components
Subject: [asp_components] how an unchecked checkbox returns a value into
a request.Form collection?


Sorry guys!!!! this is a very big problem for me!. It would be very
appreciated if someone helped me!!
The problem is that i want my checkeboxes to be "seen" (or return a value
or "viewed" - as you like it!!) by the Request.Form collection   even if
they are not checked. Please, how could  i do that? thank you very much
for your time!
Gus

%%email.unsub%%



  Return to Index