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 Mike Lewis 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. finnoscar

    Autorefresh

    Is there anyway to get IE to autorefresh at set time intervals?
  2. finnoscar

    Problem with ASP and Form in JavaScript

    I tried doing this but I still get the same error message Error Type: Microsoft OLE DB Provider for ODBC Drivers (0x80040E10) [Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 2. /PickADog.asp, line 29
  3. finnoscar

    Could somebody have a look at this

    Do I need to declare these 2 variables and do I need an if statement like if (int_BreederNo!=&quot;undefined&quot; && str_PupsAvailable!=&quot;undefined&quot;) in order to read in these 2 values from a form like this </SCRIPT> <meta name=&quot;Microsoft Theme&quot; content=&quot;indust 110...
  4. finnoscar

    Could somebody have a look at this

    Do I have to declare the two variables txtPupsAvailable and txtBreederNo like this var int_BreederNo = new Integer(Request.Form(&quot;txtBreederNo&quot;)) var str_PupsAvailable = new String(Request.Form(&quot;txtPupsAvailable&quot;))
  5. finnoscar

    Could somebody have a look at this

    Could somebody have a look at this and tell me what if anything is missing from it: <%@ LANGUAGE = JavaScript%> <HTML> <HEAD> <meta name=&quot;Microsoft Theme&quot; content=&quot;indust 110, default&quot;> </HEAD> <BODY> <% // Connect to database var adoConnection =...
  6. finnoscar

    How Can I Modify SQL statement?

    I get the following error message Error Type: Microsoft JScript compilation (0x800A03EC) Expected ';' /Update.asp, line 17, column 22 & &quot;WHERE BreederNo ='&quot;Request.Form(&quot;txtBreederNo&quot;) &&quot;'&quot;; ---------------------^
  7. finnoscar

    How Can I Modify SQL statement?

    How could I modify the following code to allow a breeder to update the pups available field of their record in the breeders table? <%@ LANGUAGE = JavaScript%> <HTML> <HEAD> <meta name=&quot;Microsoft Theme&quot; content=&quot;indust 110, default&quot;> </HEAD> <BODY> <% // Connect to...
  8. finnoscar

    Problem with ASP and Form in JavaScript

    The table is as follows Breeds (BreedName, Size, Grooming, Exercise, SpaceReq, FeedingReq) BreedName is a hyperlink and all the rest are text fields.
  9. finnoscar

    How could I modify this code to ena

    Could somebody please tell me how to allow a breeder to update the pups available field of their records in the table.
  10. finnoscar

    Problem with ASP and Form in JavaScript

    One of the table fields was incorrectly named and when I corrected it the error message changed to: Error Type: Microsoft OLE DB Provider for ODBC Drivers (0x80040E10) [Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 2. /PickADog.asp, line 29 They are all text fields...
  11. finnoscar

    Problem with ASP and Form in JavaScript

    One of the table fields was incorrectly named and when I corrected it the error message changed to: Error Type: Microsoft OLE DB Provider for ODBC Drivers (0x80040E10) [Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 2. /PickADog.asp, line 29 They are all text fields...
  12. finnoscar

    How could I modify this code to ena

    This is the code I used to return a list of breeders for a particuar breed. The BookPup.asp part then allowed the user to add their name to a booking table so it is not relevant in this instance. I want to allow a breeder to update the PupsAvailable field which consists of text stating Yes or...
  13. finnoscar

    How could I modify this code to ena

    How could I modify this code to enable a user to update the pups available field <BODY><TABLE BORDER=1> <THEAD> <TR> <TH>BreederNo</TH> <TH>Breeder Name</TH> <TH>Phone No.</TH> <TH>Address</TH> <TH>Pups Available</TH> </TR> </THEAD> <% var str_DogName = new...
  14. finnoscar

    Problem with ASP and Form in JavaScript

    Thanks a million codestorm you've been a life saver.
  15. finnoscar

    Problem with ASP and Form in JavaScript

    Breed Name SELECT BreedName FROM Breeds WHERE Size=&quot;L&quot; and Grooming=&quot;Mod&quot; and ExerciseReq=&quot;Mod&quot; and SpaceReq=&quot;Mod&quot; and FeedingReq=&quot;Mod&quot; This is what is returned when I pick these radio buttons and submit it
  16. finnoscar

    Problem with ASP and Form in JavaScript

    How would I insert a key on the right hand side of the page to let users know what each of the categories they are picking means?
  17. finnoscar

    Problem with ASP and Form in JavaScript

    This is the way I inserted your code <%@ LANGUAGE = &quot;JavaScript&quot;%> <html> <head> <meta name=&quot;Microsoft Theme&quot; content=&quot;indust 110, default&quot;> </head> <body><table border=&quot;1&quot;> <%var str_DogSize = new...
  18. finnoscar

    Problem with ASP and Form in JavaScript

    How would I add a link to this page to take me back to the homepage or to other pages?
  19. finnoscar

    In my db I have three tables Breede

    Could someone please tell me if this is the correct way to go about allowing a user to enter their BreederNo and getting a list of bookings for themselves from the two tables
  20. finnoscar

    Problem with ASP and Form in JavaScript

    I have it exactly as you've shown but I still get an error message saying: Error Type: Microsoft OLE DB Provider for ODBC Drivers (0x80040E10) [Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 3. /PickADog.asp, line 29 What's wrong?

Part and Inventory Search

Back
Top