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 bkrike 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: breeb
  • Content: Threads
  • Order by date
  1. breeb

    Item selected displayed in drop-down

    I have search that gets input from 3 drop-down boxes and one text box. The results of the search are displayed 5 at a time and therefore I need the results of the search to be displayed in the drop-down box as the user pages through the search results. At the moment I have am using...
  2. breeb

    Implementing Specialisation

    I have a table 'Problem' and each problem has a specific problem type. The problem types each have different attributes and so I have created a separate table for each one (there are 3:batch, online and system). I have a the primary key for Problem (ProblemID) as a promary key for each of the...
  3. breeb

    ASP and HTML tags

    I am writing a search page that shows n results at a time and am having problems with sending variables to a HTML tag inside a 'Response.write'. Any ideas on the syntax? This is what I have so far: Response.Write(&quot;<INPUT TYPE=BUTTON VALUE=NEXT...
  4. breeb

    SQL Update

    I am trying to update the values in an ASP page read from a database. The values are stored in a table with the columns labeled from a-c (d is a hidden column containing the promary key) and the rows are from 1 to countsys which is a variable storing the number of systems. The error that I get...
  5. breeb

    Text box properties

    I am displaying information from a database and allowing the user to edit it and then submit the changes. The problem is with the text box as when the page is displayed and the user clicks on the text box, the cursor is placed at the BEGINNING of the text (as opposed to at the end) and the user...
  6. breeb

    Hide/display information in nested table

    I would like to show certain information and also provide the user with the option to view other information. At the moment, the view/hide function works, but not in the correct way as it displays the information and clicking on 'view' hides it. Also this only works for the first row in the...
  7. breeb

    'style.display' is null or not an object

    I am pretty new to Javascript and trying to display a result set from a database when the user clicks on a word. My javascript function is: <SCRIPT> function toggle(e) { if (e.style.display == &quot;none&quot;) { e.style.display = &quot;&quot;; } else { e.style.display =...

Part and Inventory Search

Back
Top