Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by taoist

  1. taoist

    format textbox

    This code here works great with changing text to upper case with this code how could prevent certain text to be entered into the textbox. <script language="JavaScript"> function toUpper(e,r){ r.value = r.value.toUpperCase(); } </script
  2. taoist

    format textbox

    I'm new at jaascript do you have a sample script
  3. taoist

    format textbox

    how can I setup a textbox to only allow capital letters input into the textbox? Also can I setup a textbox to only allow certain letters typed into the box right now I the textbox is set to 1 Max Chars and 1 Char Width any help would be greatly appreciated
  4. taoist

    textbox

    how can I setup a textbox to only allow capital letters input into the textbox? Also can I setup a textbox to only allow certain letters typed into the box right now I the textbox is set to 1 Max Chars and 1 Char Width any help would be greatly appreciated
  5. taoist

    listbox results

    Sheco I have never done that. what would be the exact scripting for that and where would I put it in my code
  6. taoist

    listbox results

    I have a record set that shows multiple records. and I have my listbox that is bind to a column in the table I think the problem is in the repeated session where I get multiple records from my query. So when I run the query I get: Response object error 'ASP 0251 : 80004005' Response Buffer...
  7. taoist

    update multiple records

    I'm getting this with the response.write UPDATE dbo.eval_master SET GRADE = '' WHERE INDEX1 IN ('')
  8. taoist

    update multiple records

    I'm not sure if the structure of the update code is correct
  9. taoist

    update multiple records

    well its not doing anything. I want to save changes on multiple records thats created by the recordset. hitting the submit button does not produce an error. so I'm not sure what the problem is.
  10. taoist

    update multiple records

    I have this code, and I trying to update records, but when I hit the submit button it does not save the changes is there anyone out there that could help me <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <!--#include file="../../../../../../Connections/cnnDB.asp" --> <%...
  11. taoist

    update repeated region recordset

    does anyone know how to do this?
  12. taoist

    update multiple records

    does anyone know how to do this
  13. taoist

    update repeated rows recordset

    do you have a sample snippet
  14. taoist

    update repeated rows recordset

    I have this recordset it works great. Now I want to create and update query to update all rows in the repeated region can anyone help me with this issue <% Dim Recordset1__MMColParam Recordset1__MMColParam = "1" If (Request.QueryString("stuRun") <> "") Then Recordset1__MMColParam =...
  15. taoist

    update repeated region recordset

    I have this recordset that is a repeated region. And I'm trying to update the data with new values. Well the code I have does not allow me to update multiple records or the repeated region. Now if I take off the repeated region then I get one record. then I can update that record. I need to...

Part and Inventory Search

Back
Top