Connecting Tech Pros Worldwide Help | Site Map

ASP/Html checkbox convert to true/false for MS Access backend.

  #1  
Old November 19th, 2008, 02:45 PM
joecosmides@gmail.com
Guest
 
Posts: n/a
I have a microsoft access front end and backend database for multi-
user use. I have the back end located on a server that also is an IIS
webserver. I've created a few ASP pages that pull customer lists down
so far and it works great. I am trying to edit some of that data and
noticed that a checkbox on the webpage uses ON/OFF instead of True/
False like MS Access uses. My problem is trying to get the checkbox to
be checked if the data in the field called "ServiceCallBack" is pulled
and shown to be True. If False then it would uncheck the box.

Here is the code I have on that webpage:

<%

ID = Request("ID")
ID = CLng(ID)

%>
<!--#include file="database-connect.asp"-->
<%
SQL = "SELECT * FROM Support2Q WHERE LeadDetailID=" & ID
RS.Open SQL, Conn

ServiceNotes = rs("ServiceNotes")
ServiceCallBack = rs("ServiceCallBack")
ServiceCallBackTime = rs("ServiceCallBackTime")
Customer = rs("Customer")
ContractorName = rs("ContractorName")


%>
<!--#include file="database-disconnect.asp"-->

<html>
<body>

<form method="POST" action="editprocess.asp">
<tr>
<td width="130">LeadDetailID:</td>
<td width="267"><input type="hidden" name="ID" value="<%=ID%>"
size="25"></td>
<p>
</tr>
<tr>
<td width="130">Customer:</td>
<td width="267">
<input type="text" name="Customer" value="<%=Customer%>"
size="57"></td>
</tr>
<tr>
<td width="130">&nbsp;&nbsp;&nbsp; </p>
<p>
Contractor Name:</td>
<td width="267">
<input type="text" name="ContractorName" value="<%=ContractorName
%>" size="50"></td></p>
<p>
Notes: <textarea rows="8" name="ServiceNotes" cols="86"><
%=ServiceNotes%></textarea></p>

<p>Call Back?
<input type="checkbox" name="ServiceCallBack" value="<
%=ServiceCallBack%>"></p>

<p>Call Back When?</td>
<td width="267"><input type="text" name="ServiceCallBackTime"
value="<%=ServiceCallBackTime%>" size="50"></td></p>

<p><input type="submit" value="Submit" name="B1"></p>
</form>
</body>
</html>
  #2  
Old November 20th, 2008, 08:15 AM
Mike Brind
Guest
 
Posts: n/a

re: ASP/Html checkbox convert to true/false for MS Access backend.



<joecosmides@gmail.comwrote in message
news:f785da11-2edb-4a17-945d-5ec4ebb21eec@40g2000prx.googlegroups.com...
Quote:
>I have a microsoft access front end and backend database for multi-
user use. I have the back end located on a server that also is an IIS
webserver. I've created a few ASP pages that pull customer lists down
so far and it works great. I am trying to edit some of that data and
noticed that a checkbox on the webpage uses ON/OFF instead of True/
False like MS Access uses. My problem is trying to get the checkbox to
be checked if the data in the field called "ServiceCallBack" is pulled
and shown to be True. If False then it would uncheck the box.
>
Here is the code I have on that webpage:
>
<%
>
ID = Request("ID")
ID = CLng(ID)
>
%>
<!--#include file="database-connect.asp"-->
<%
SQL = "SELECT * FROM Support2Q WHERE LeadDetailID=" & ID
RS.Open SQL, Conn
>
ServiceNotes = rs("ServiceNotes")
ServiceCallBack = rs("ServiceCallBack")
ServiceCallBackTime = rs("ServiceCallBackTime")
Customer = rs("Customer")
ContractorName = rs("ContractorName")
>
>
%>
<!--#include file="database-disconnect.asp"-->
>
<html>
<body>
>
<form method="POST" action="editprocess.asp">
<tr>
<td width="130">LeadDetailID:</td>
<td width="267"><input type="hidden" name="ID" value="<%=ID%>"
size="25"></td>
<p>
</tr>
<tr>
<td width="130">Customer:</td>
<td width="267">
<input type="text" name="Customer" value="<%=Customer%>"
size="57"></td>
</tr>
<tr>
<td width="130">&nbsp;&nbsp;&nbsp; </p>
<p>
Contractor Name:</td>
<td width="267">
<input type="text" name="ContractorName" value="<%=ContractorName
%>" size="50"></td></p>
<p>
Notes: <textarea rows="8" name="ServiceNotes" cols="86"><
%=ServiceNotes%></textarea></p>
>
<p>Call Back?
<input type="checkbox" name="ServiceCallBack" value="<
%=ServiceCallBack%>"></p>
>
<p>Call Back When?</td>
<td width="267"><input type="text" name="ServiceCallBackTime"
value="<%=ServiceCallBackTime%>" size="50"></td></p>
>
<p><input type="submit" value="Submit" name="B1"></p>
</form>
</body>
</html>
<p>Call Back?
<input type="checkbox" name="ServiceCallBack" value="-1" <% If
ServiceCallBack = -1 Then Response.Write " ""checked""" %>>
</ p>

--
Mike Brind
MVP - ASP/ASP.NET


Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
ASP/Html checkbox convert to true/false for MS Access backend joecosmides@gmail.com answers 2 November 20th, 2008 01:35 AM