Thanks I figured it out. This seems to work pretty good...
<script language = "vbscript">
sub DisableTextbox()
if document.Vendor.cboVendor.value <> "" then
document.Vendor.txtVendorName.value=""
document.Vendor.txtVendorName.disabled=true
else...
I have a combobox that looks like this:
<select name = "cboList">
<option>Not in list</option>
<option>Vendor1</option>
<option>Vendor2</option>
<option>Vendor3</option
</select>
I also have another textbox that looks like this:
<INPUT type="text"...
Is it possible to have a directory (named A, for example) that I can save documents to and once they are saved to that folder, an automatic copy will be sent to 2 different directories (directories B and C)?
Here's my modified version: If I was to uncomment the response.write, I would see every DOB for that record, so that is working, but the line "if (DOB = rsbabyinfo.....) is not working>>>
if (chk= "") then
rsbabyinfo.MoveFirst
do until rsbabyinfo.EOF
if (DOB =...
Nope. The loop through recordset code (movefirst/movenext) is not working. I checked to see if I have an active record before and after the code and I do... What could be the problem??
I have a DOB text box ("txtDOB") on my form. I want to be able to loop through a recordset so that where "txtDOB" = rsinfo("DOB_FIELD"), the user will see a messagebox and then response.end.
Here's my code sofar:
if (request.form("chkTwin") =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.