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 strongm 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: bankofalltrades
  • Order by date
  1. bankofalltrades

    does anyone know how to initiate a control F5 to automatically refresh

    I'm attempting to refresh the users webpage every 30 seconds or so and I'm using javascript and asp. Does anyone know how?
  2. bankofalltrades

    Why wont this work? function

    <script language="JavaScript" type="text/JavaScript"> function validate_required(field,alerttxt) { with (field) { if (value==null||value=="") {alert(alerttxt);return false;} else {return true} } } function validate_form4(thisform) { with (thisform) { if (validate_required(Agent_Empid4,"Agent...
  3. bankofalltrades

    can someone help me with a date comparison checkit is always false

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>test</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <script type="text/javascript"> function...
  4. bankofalltrades

    can someone help me with a date comparison checkit is always false

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>test</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <script type="text/javascript"> function...
  5. bankofalltrades

    need help with datetime validation in javascript

    I found a bunch of examples but they all get a cdate error message. What I'm looking for is if the user puts in something that doesn't resemble a date such as 12345 that it just does an alert box at submit on form validation. The user should be entering a date similar to military datetime such...
  6. bankofalltrades

    input text type turns into list box and shows prior data vals

    I would only put my variable name in the value=<%=variablename%> and I would change the field names to something different.
  7. bankofalltrades

    Does anyone know the syntax to call an asp subroutine

    I want to have a command button that on the onclick event gives me a count of this sql/asp code: <% zero = "SELECT * FROM IVRADM.T_FLFORM_DAT_EMPLOYEE_Quality WHERE (Quality_Status='Sent to Supervisor') AND (Total_Quality_Score=0) AND Supervisory_Employee_ID = '" & user_id & "' ORDER BY...
  8. bankofalltrades

    Does anyone know the syntax to call an asp subroutine

    I have a queue page that counts the number of records based on a certain query to an sql database. It does not update efficiently and I think what I need to do is have an asp subroutine that recalculates everytime a command button is pressed and then does a response.write for the value. Any...
  9. bankofalltrades

    does anyone know how to check for \ in a text box substr does not work

    I'm trying to have a text box that the user will copy/paste a file destination into. I'm validating that the user pasted correctly and that the beginning of the string starts with \\ any ideas?

Part and Inventory Search

Back
Top