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. tazzer

    Inoculate Admin View cannot discover rogue machine

    Hi glacierxx, Yeah I've added the subnet to the Admin console; all the other machines on the subnet are showing except this one server. The server is definitely on the network and has Inoculate installed but will not show at all in the Admin Console. There's nothing differnt about that server -...
  2. tazzer

    Inoculate Admin View cannot discover rogue machine

    Hi folks, I'm having desperate trouble with a server that I cannot discover through the Inoculate version 6 Admin manager. The strange thing is that every other machine on that subnet has been discovered OK and are updating successfully from the Admin server. This server was not ghosted either...
  3. tazzer

    Inserting multiple values of the same db field into a table

    Tarwn, Thanks for the advice; I've got the code working a treat now! And thanks again to all the guys who contributed to this thread. Tazzer
  4. tazzer

    Inserting multiple values of the same db field into a table

    Hi guys, Nearly doing what I want now; I used Tarwn's line :- formData = Split(Request.form(&quot;txtFirstName&quot;),&quot;, &quot;)which did the trick. However I want to insert a second field into the database as well eg. <tr> <td><b>First Name:</b></td> <td><input type=&quot;text&quot...
  5. tazzer

    Inserting multiple values of the same db field into a table

    Thanks for your help so far folks. Its much appreciated. Used mwolf00's code from earlier and now can insert from several input fields into the same field in the db table. Unfortunately it puts all of the field inputs into the same record whereas I want the inputs to go in as separate records...
  6. tazzer

    Inserting multiple values of the same db field into a table

    Hi folks, I have created an application that will allow users to log visitors to our humble organisation. I am using an Access database back end that I currently input the visitor name into (one text field only). However I want to be able to insert not just one name at a time but rather 2 to 5...
  7. tazzer

    Trying to strip ADSI details

    Hi, I am attempting to return specified characters from a string variable. The variable is called in session form from Active Directory - session(&quot;linemanager&quot;) - and the output is as follows: CN=firstname.lastname,OU=Galwally and Local Offices,OU=Users,OU=InvestNI Users and...
  8. tazzer

    Search page not working!

    Hi, I've created a search page that pulls name details from an Access database. Originally the search took the user to a results page that I created but I've been asked to incorporate the results into the search.asp page itself. My code is below, but it causes all the names in the database to...
  9. tazzer

    How do I bring up the last record for deletion?

    Thanks BlastRadius, Took your advice and got rid of the loop; the following code worked for me: <%dim conn, rs set conn = Server.CreateObject(&quot;ADODB.Connection&quot;) conn.Open(&quot;DSN=Logger&quot;) set rs = conn.execute(&quot;Select * From tblMail Order by intID Desc&quot;) 'put in the...
  10. tazzer

    How do I bring up the last record for deletion?

    Hi, I've created a form where records are added and deleted from an Access database. The deletion code currently displays all the records and allows the user to choose any to delete. However I want only the last record entered to be available for deletion. The code is as follows: <%dim conn...
  11. tazzer

    SQL strings for a form

    Hi, I'm a first-time ASP user. I've created a search form which accepts a value belonging to a field called Surname which brings up a table of numbers. Is there any way to include the field FirstName in the SQL string so that a user must type in both surname and first name before getting the...

Part and Inventory Search

Back
Top