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 SkipVought 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: *

  1. steven290

    ASP and Sub Tables

    this question would probably best be answered by using google but here try this as a start http://www.aspwebpro.com/tutorials/asp/displaydatadb.asp
  2. steven290

    CRAZY WEBSITE PROBLEM>< DELETES ONLY LOCAL LISTINGS

    post the code that processes the post
  3. steven290

    Removing an element from array

    not to sure but you just use MyArray.splice(2,1); //2 being the position and 1 being the amount after the position to remove
  4. steven290

    Compare multiple fields in RecordSet and update only existing records?

    if you use the select on the form, you can't use the request("fname") as a search criteria
  5. steven290

    radio button selection to unhide div info

    kaht they are also missing a } before the else
  6. steven290

    radio button selection to unhide div info

    made adjustments but not sure why you would want this <script type="text/javascript"><!-- function getObjRef(id) { if(document.getElementById) { return document.getElementById(id); } if(document.all) { return document.all[id]; } } function display1() { //selected is the radio input option...
  7. steven290

    Updating a Recordset (contains Binary)

    when using the file field it messes with the binaryread of the code so all your request.whatever no longer work, you need to use an upload class which have the fix for your problem; solution http://www.pscode.com/vb/scripts/ShowCode.asp?txtCodeId=7361&lngWId=4
  8. steven290

    Compare multiple fields in RecordSet and update only existing records?

    but your trying to select from the db even though its blank if Request.form("fname")="" then set rs=Server.CreateObject("ADODB.Recordset") rs.open "SELECT * FROM customers WHERE fname='" & fnUpdStr & "' AND lname='" & lnUpdStr & "' AND address1='" & ad1UpdStr & "'",conn
  9. steven290

    Compare multiple fields in RecordSet and update only existing records?

    but at glance I can see that your doing a "if first name field is blank select from customers where fname is equal to first name (blank, will not work), i think you use was suppose to use ... if Request.form("fname")<>"" then ...
  10. steven290

    Compare multiple fields in RecordSet and update only existing records?

    use this for your error handle if err<>0 then err = err & Err.Number & " / " & Err.Description & "<br>" response.write err else response.write("Record " & cid & " was updated!") end if
  11. steven290

    GetFile or OpenTextFile = &quot;File Not Found&quot;??

    The "internet guest account(IUSR_computername)" needs to have the proper permissions
  12. steven290

    Validating the Value in a textbox against MYSQL Table, then returning

    here are soem good references: exactly what you need http://particletree.com/features/degradable-ajax-form-validation/ an example: (place in an invalid email address) http://www.nick-dunn.co.uk/files/ajax-form-validation/ some reference to using the prototype lib (my preference)...
  13. steven290

    Validating the Value in a textbox against MYSQL Table, then returning

    this sounds to me like you need some ajax to do some real-time validation,I would start there. If not I would have 1 submit at the bottom that just checks all the fields at the end.
  14. steven290

    Microsoft VBScript compilation error '800a0400'

    you were missing a couple of "end if"'s and "&_" was being misused
  15. steven290

    Microsoft VBScript compilation error '800a0400'

    try this for your 500-100.asp <%@ language="VBScript" %> <% Option Explicit Const lngMaxFormBytes = 200 Dim objASPError, blnErrorWritten, strServername, strServerIP, strRemoteIP Dim strMethod, lngPos, datNow, strQueryString, strURL If Response.Buffer Then Response.Clear...
  16. steven290

    Static variables in Javasript

    why dont you set a server-side session that gets set when you first loadd the page. Then this session will just set the js variable everytime you postback

Part and Inventory Search

Back
Top