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

    Show and Hide

    Hi, I have this example which works in IE Explorer, but not in Firefox. What changes do I make in the JS code to make it work both in IE and Firefox? In the Firefox, I get the alert messages in the JS function, but there is no display of the div containers. Thanks. <!DOCTYPE html PUBLIC...
  2. tayorolls

    Connection from ASP to Oracle 10g database.

    I had selected Microsoft OLE DB Provider for Oracle as the Provider. Should I be looking for some other providers? I shall try to re-run the client installation. Thanks.
  3. tayorolls

    Connection from ASP to Oracle 10g database.

    That was a good way to testing the connection. I followed your instructions to build the Connection String and used the connection string in my ASP page. However I still get the error. Connection String I used which was successful: objConn.Open "Provider=MSDAORA.1;User ID=apps;Data...
  4. tayorolls

    Connection from ASP to Oracle 10g database.

    There is only folder called OracleHome on my local machine - C:\OracleHome
  5. tayorolls

    Connection from ASP to Oracle 10g database.

    Thanks for the response. Could you elaborate on this Provider tab. Which window dialog would have this provider tab?
  6. tayorolls

    Connection from ASP to Oracle 10g database.

    OK, I tried this. Set objConn = Server.CreateObject("ADODB.Connection") 'objConn.Open "Provider=MSDAORA;Data Source=SYKDEV;User Id=apps;Password=apps;" objConn.Open "Provider=OraOLEDB.Oracle.1;User ID=apps;Password=apps" I still cannot connect. I get the error: Error Type...
  7. tayorolls

    Connection from ASP to Oracle 10g database.

    I looked into the MSDN documentation: I tried this example. <%@ Language=VBScript %> <html> <head> <title>Oracle Test</title> </head> <body> <center> <% Set objConn = Server.CreateObject("ADODB.Connection") objConn.Open "Provider=MSDAORA;Data Source=SYKDEV;User...
  8. tayorolls

    Creating a Dynamic Tree menu from SQL

    Here is ASP code that shows hierarchy of products under the respective category in the Northwind database. This sample code shows how to build a tree based on the table - Categories and Products. It builds the tree serverside, and then uses Javascript show and hide to toggle the show and hide...
  9. tayorolls

    Connection from ASP to Oracle 10g database.

    I just tried connection to the the table: select * from per_all_people_f through my SQL*Plus and I was able to see all the records. I shall try the OLEDB connection to Oracle instead of ODBC. However since this is an intranet web-page, does this mean that all users of intranet need to have...
  10. tayorolls

    Connection from ASP to Oracle 10g database.

    Thanks for the response. I have Oracle Ora Home on my desktop. Within Application Development, I have SQL * Plus. I have used SQl * Plus to connect to the development environment. Thanks,
  11. tayorolls

    Connection from ASP to Oracle 10g database.

    Hi, I am trying to connect from ASP to an Oracle 10g database. I got a sample connection string from www.connectionstrings.com I get an error message which I have attached along with this post. It is alert box with the message that says - "" In the browser, I get the following error: The...
  12. tayorolls

    Highlight matching results in bold

    It was not displaying because of case-sensitivity. If I type anti in the searchbox, then it would not highlight any of the following: Recent Medical Device Antitrust Cases Hogan and Hartson Health Care Antitrust Update Hillenbrand Settles Antitrust Lawsuit for $300 M Focus on Antitrust...
  13. tayorolls

    Highlight matching results in bold

    Thanks for the response. But I do not see any results. This is what I changed it to: sSearch = Request.Form("Search") Display the results 'Build SQL statements based on the Search Criteria. If sSearch <> "" Then sSQL = "SELECT LinkTitle, URL FROM Link " & _ "WHERE LinkTitle...
  14. tayorolls

    Highlight matching results in bold

    Hi, I have a search feature which searches for the URL from a database. I am able to get all the results from the database with the closest matches. However is there a way I can highlight the words in bold so that in a list of URLs return, it shows the URLs and the matched word. SELECT...
  15. tayorolls

    Strange Behavior - Form submission

    Thanks for the replies. I do not receive any errors in Scenario 2. My receiving page - updateHomeUsersProcess.asp has this code: For Each Item in Request.Form response.write "<b>" & Item & "</b>: " & Request.Form(Item) & "<br>" Next I do not see any thing printed to the browser.
  16. tayorolls

    Strange Behavior - Form submission

    This is a wierd behavior that I am seeing. Let me know what could be the issue. I tested this both in my local IIS and production IIS. The same code works. I have made sure that the path is exactly the same, the properties are exactly the same. This is a simple form with a textbox and it...
  17. tayorolls

    Validating that Start Date is less than End Date

    This is not a homework posting. I work for a medical devices company doing ASP programming. I apologize if the level of my question seemed very basic and should do more research before asking questions. Thanks.
  18. tayorolls

    Validating that Start Date is less than End Date

    Thanks for the reply. Now I get another error: <form name="frmERP" action="" method=post> <fieldset align="middle"> <legend>Select Search Criteria</legend> <table border=0> <tr > <td colspan="2" align="right"></td>...
  19. tayorolls

    Validating that Start Date is less than End Date

    Hi, I have 2 textboxes. One for the start date and one for the end date. When the End date is entered, I would like to validate that the end date is greater than the start date. This is what I have so far. I get the error: Object does not support this property or method in line 11...
  20. tayorolls

    How to highlight a submit button?

    Thanks for the tip.

Part and Inventory Search

Back
Top