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 Wanet Telecoms Ltd 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: tuam1234
  • Content: Threads
  • Order by date
  1. tuam1234

    database update

    i appreciate all replies!!! does anyone know why im getting this error... Error Type: Microsoft OLE DB Provider for ODBC Drivers (0x80040E07) [Microsoft][ODBC Microsoft Access Driver] Data type mismatch in criteria expression. /paycheck3.asp, line 74 the line in relation to this eror is...
  2. tuam1234

    database manipulation prob!!

    could someone please help me.. im tryin to allow someone to login and even if they enter the correct name and password on a previous form, they stll get direected to choose.asp in the "if".... why can anyone tell me??? its prob something simple but i ant seeing it.. <% 'Dimension variables...
  3. tuam1234

    HELP! reducing the quantity value of db field prob!!

    if someone could see what im doin wrong id really appreciate it!!! in the code below im trying to reduce the value of the "Quant" field by 1 in the Holidays database.. the prob is the it will display the new reduced value on the screen BUT it wont update it in the database, it remans...
  4. tuam1234

    HELP, prob displaying database info!!!!

    hey guys, i no its st pats day but can someone please help me!!!!!!! i have an asp that populates a dropdown box with destinations. i chose one of the destinations from the dropdown box. this leads to another asp where i want my choice and the database information to be displayed on the 2nd...
  5. tuam1234

    please help! shopping cart

    could someone please please help. i got a shopping cart off the net. it is one where the have static information about the items included in the code.. problem is, i want to change this static information to information taken from database. i have recked my head for the last 4 hours trying to...
  6. tuam1234

    expiry date validation

    does anybody have code or know where i could get code that would help me to validate the expiry date on a credit card form?? i appreciate any help!!!
  7. tuam1234

    database field deletion!

    does anybody have any code that will physically remove a record from a database. i do have code that deletes/locks access to the record but i want to be able to completly remove the code from the database as it is populating a dropdown box and i want the box to be accurate.. thanks for all...
  8. tuam1234

    help!! problem refreshing form after updating database!!

    here i have code that helps to populate a dropdown box using the database. just one problem, when i make a change to the database and refresh the page containing the dropdown box, it doesnt update the dropdown box... does anyone have any information on how i can refresh the dropdown box when...
  9. tuam1234

    preventing duplicates!

    im populating a dropdown box from a database but dont want any duplicates.. when i use: check = "SELECT DISTINCT adminPassword FROM admin GROUP BY adminPassword" i dont get any duplicates but when i try to add another filed to the query as in: check = "SELECT DISTINCT adminName...
  10. tuam1234

    help!!! preventing duplicates when populating a dropdown box.

    when i add in "Distinct" to check= "SELECT Leaving, Destination, arrTime, depTime FROM Holidays" it groups all the same occurences together. ie. before i added it in i got: london edinbouragh london london edinbouragh when distinct is added i get: london london london edinbouragh...
  11. tuam1234

    problem with shopping cart!!

    PLEASE PLEASE HELP.. ANY HELP WILL BE GREATFULLY APPRECIATED!! this is the code for view.asp. when i click the button on the page that allows the user to view the contents of the shopping cart i get this error: Error Type: Microsoft VBScript runtime (0x800A0009) Subscript out of range...
  12. tuam1234

    help! remove duplicates when populating dropdown box

    i am populating a dropdown box using the database and iv done this successfully. only problem is that i want to remove dublicates in the dropdown box. any suggestions on how to achieve this are greatly appreciated!! here's the code for populating dropdown box. <% Dim connection Dim check...
  13. tuam1234

    HELP!! dropdown box population

    could somebody please help me! i have 2 popdown boxes: adminName + adminPassword, that i want to populate using the database table admin with the 2 fields adminName + adminPassword. problem is, only the password dropdown box is being populated. the code to populate the name is been ignored...
  14. tuam1234

    populating 2 popdown boxes using database details

    could somebody please help me! i have 2 popdown boxes: adminName + adminPassword, that i want to populate using the database table admin with the 2 fields adminName + adminPassword. problem is, only the password dropdown box is being populated. the code to populate the name is been ignored...
  15. tuam1234

    null and number validation!!!

    please help!! in the code below, if the field is empty the alert message will appear but it completly ignores the isNumeric part. when a character is entered, no alert is shown and it continue to next page. if ((document.formname.exp.value == &quot;&quot;)||...
  16. tuam1234

    verififing if entry was a number

    i would appreciate any help. in the code below, i am verifying if the user entered in a credit card number in the field. if (document.formname.cardNum.value == &quot;&quot;) { // tell client that you need the name alert(&quot;Please enter a valid card number&quot;) // send...
  17. tuam1234

    asp database update prob!!!!

    could ye please help. when i try to add to the database,k i get the error: Error Type: Microsoft OLE DB Provider for ODBC Drivers (0x80004005) [Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query. /paycheck.asp, line 50 when running the following code: <%...
  18. tuam1234

    inserting into database using asp prob!!

    Any help will be greatly appreciated. i want to insert general information into a database. the problem is that when run, it goes into the if statement and displays the page choose.asp but the information from the form is not going into the database!! any thoughts to why this is????? Heres...

Part and Inventory Search

Back
Top