Sep 6, 2005 #1 g2000 Programmer Aug 31, 2005 39 US I have a check box in my form <input type="checkbox" name="chk1" id="chk1" > When I get its value by Request.Form("chk1") I only get either "on" or empty string How can I do an update to the database?
I have a check box in my form <input type="checkbox" name="chk1" id="chk1" > When I get its value by Request.Form("chk1") I only get either "on" or empty string How can I do an update to the database?
Sep 6, 2005 #2 DotNetGnat Programmer Mar 10, 2005 5,548 IN If Request.Form("chk1")="on" then do something else do someotherthing end if -DNG Upvote 0 Downvote
Sep 7, 2005 #3 DotNetGnat Programmer Mar 10, 2005 5,548 IN where are you with this?? -DNG Upvote 0 Downvote
Sep 7, 2005 Thread starter #4 g2000 Programmer Aug 31, 2005 39 US yeah, i got it. thanks Upvote 0 Downvote