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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: taoist
  • Order by date
  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

    ...Set Recordset1 = Server.CreateObject("ADODB.Recordset") Recordset1.ActiveConnection = MM_cnnDB_STRING Recordset1.Source = "SELECT * FROM dbo.eval_master WHERE CRN = '" + Replace(Recordset1__MMColParam, "'", "''") + "'" Recordset1.CursorType = 0 Recordset1.CursorLocation = 2...
  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

    ...Set Recordset1 = Server.CreateObject("ADODB.Recordset") Recordset1.ActiveConnection = MM_cnnDB_STRING Recordset1.Source = "SELECT * FROM dbo.eval_master WHERE CRN= '" + Replace(Recordset1__MMColParam, "'", "''") + "' AND TERM = '200630'" Recordset1.CursorType = 0 Recordset1.CursorLocation =...
  15. taoist

    update repeated region recordset

    ...on this would be great. My Code <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <!--#include file="../../../../../../Connections/cnnDB.asp" --> <% ' *** Edit Operations: declare variables Dim MM_editAction Dim MM_abortEdit Dim MM_editQuery Dim MM_editCmd Dim MM_editConnection Dim MM_editTable...
  16. taoist

    variable set in recordset

    also column in the table is varchar
  17. taoist

    variable set in recordset

    I did a response.write Recordset1__varstr there is a value and there is data in the table is the syntax correct? even with the commented out
  18. taoist

    variable set in recordset

    I setup a variable to pass data to the recordset to run the query. If I use the name in the query it works fine but if I use the variable it does not work. I think it has to do with syntax but I'm not sure can someone help me out with this. This works Recordset1.Source = "SELECT firstname...
  19. taoist

    variable record set

    I get no results
  20. taoist

    variable record set

    ...Set Recordset1 = Server.CreateObject("ADODB.Recordset") Recordset1.ActiveConnection = MM_Helpdeskcnn_STRING Recordset1.Source = "SELECT * FROM dbo.task WHERE first = '" + Replace(Recordset1__MMColParam, "'", "''") + "'" Recordset1.CursorType = 0 Recordset1.CursorLocation = 2...

Part and Inventory Search

Back
Top