Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - Load checkbox value
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Load checkbox value

 Post Reply Post Reply
Author
ngaisteve1 View Drop Down
Groupie
Groupie
Avatar

Joined: 26 December 2002
Location: Malaysia
Status: Offline
Points: 169
Post Options Post Options   Thanks (0) Thanks(0)   Quote ngaisteve1 Quote  Post ReplyReply Direct Link To This Post Topic: Load checkbox value
    Posted: 02 December 2003 at 3:01am

I have some problem here with checkbox and logic I think.

table: BusinessType
field: BusinessTypeID, BusinessType

table: Cust_BusinessType
field: Cust_businessTypeID, BusinessTypeID, CompanyID

Let's say when I want to edit company's details, after I search it, and click to see the existing details, the form must have load company profile details. Here got one save_next button, then next page is business type. But, all these business type is in checkbox format. I have problem with this page, mapping the value of checkbox.

My code is below:
<table>
<!--#include file="inc_conn.asp"-->
<%
sql = "select * from businesstype ORDER BY businesstypename"
rs.Open sql, conn, 3, 3

set rs2 = Server.CreateObject("ADODB.recordset")

sql = "select * from cust_businesstype WHERE companyID = " & session("sComID") & " "
rs2.Open sql, conn, 3, 3

DO WHILE NOT rs2.eof
strBusinessTypeID = rs2("businesstypeID")
strBusinessTypeStatus = rs2("businesstypeStatus")

Checked1=""
Checked2=""

if strBusinessTypeID = 1 then
Checked1 = "CHECKED"
end if

DO WHILE NOT rs.eof
response.Write "<tr valign=top><td>" & rs("BusinessTypeName") & "</td>"
response.write "<td><input type=checkbox value=" & rs("BusinessTypeID") & " name='businesstypeID_fr' " & checked1 & "></td></tr>"
rs.MoveNext
LOOP
rs2.MoveNext
LOOP

%>
</table>

I got the 7 checkbox but all was checked which suppose to be only one was checked.

Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.