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 wOOdy-Soft 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: jcbr
  • Content: Threads
  • Order by date
  1. jcbr

    multiple forms--switch order of text fields?

    Hello, I know that nested forms are not possible in html. I also know that if you have just one text field in a form, you can submit it by just pressing enter (can't have more than one field though for the enter key to submit it). Here is what I want to do: I have a page with a bunch of text...
  2. jcbr

    nested forms

    Hello, I know that nested forms are not possible in html. I also know that if you have just one text field in a form, you can submit it by just pressing enter (can't have more than one field though for the enter key to submit it). Here is what I want to do: I have a page with a bunch of text...
  3. jcbr

    submit on pressing the enter key

    Hello, I have an asp search page that contains several text fields, and upon user entry, submits the data to a db, and returns the results of that search. No big deal...however, I want to be able to have the form submit after I hit the enter key after entering info in any text box. Right now...
  4. jcbr

    submit on pressing enter key

    Hello, I have an asp search page that contains several text fields, and upon user entry, submits the data to a db, and returns the results of that search. No big deal...however, I want to be able to have the form submit after I hit the enter key after entering info in any text box. Right now...
  5. jcbr

    CDONTS with IIS 5 on Win 2000

    I am trying to set up cdonts to send an email from asp page. Here is my code: DIM myMail SET myMail = Server.CreateObject("CDONTS.Newmail") myMail.From = "me@mycompany.com" myMail.To = "me@mycompany.com" myMail.Subject = "test" myMail.Body =...
  6. jcbr

    dBase-III --> SQL Server

    Hello, can anyone tell me what I need to do to convert a dBase-III db to SQL Server 7??? Thanks!
  7. jcbr

    dBase & ASP

    I got my asp site to connect correctly to my dBase-III database. However, we wrote a small vb app to test how many users could access the site at the same time. It crashed when more than one accessed it, and gave the following error: Microsoft OLE DB Provider for ODBC Drivers error '80004005'...
  8. jcbr

    dBase-III with ASP

    Hello, I am trying to set up an asp site using dBase-III. Any ideas on how to do this? This is what I currently have... Set objConn = Server.CreateObject("ADODB.Connection") objConn.Open "DSN=Custmast" Set rsCustmast=Server.CreateObject("ADODB.Recordset")...
  9. jcbr

    dBase-III with ASP

    Hello, I am trying to set up an asp site using dBase-III. Any ideas on how to do this? This is what I currently have... Set objConn = Server.CreateObject("ADODB.Connection") objConn.Open "DSN=Custmast" Set rsCustmast=Server.CreateObject("ADODB.Recordset")...

Part and Inventory Search

Back
Top