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 strongm 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: tayorolls
  • Content: Threads
  • Order by date
  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.

    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...
  3. 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...
  4. 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...
  5. 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...
  6. tayorolls

    How to highlight a submit button?

    Hi, This is a form with 2 sections within the same form. Either the users search by Criteria or the Users search by Period. Initially I had one Submit button to return the results for either search button. However they wanted 2 submit buttons which would be the mirror image of each other, but...
  7. tayorolls

    Creating an exact copy of the production database.

    Hi, I would like to create an exact copy of the existing database and rename it as HR_Staging. I first created a new database - HR_Staging. Then using the Import Data tool, I imported everything - tables and views from the original database HR into HR_Staging database. However I see the...
  8. tayorolls

    JSP and Connection String to Oracle and SQL Server

    Hi, I have to build a JSP page which shows a table of results from a view which is created Oracle 10g. Similarly I have to build a drop-down box in a JSP page which shows groups within the Organization from a view in SQL Server 2000. There is no related articles or examples to what I am...
  9. tayorolls

    Invalid Character Error in IE 7.0

    Hi, I have a radio group which I click on. Based on the radio button I click on, the respective dropdown box should appear greyed out and should be disabled. I get an error "Invalid Character" at line 205 and 206. Where line 205 is: <input type="radio" name="SearchBy" value="Criteria"...
  10. tayorolls

    JSP tutorials

    Hi, I am a ASP Programmer but given this task to build a website in JSP. Could anyone give me a simple tutorial link that is really good in guiding me to build a basic web-site? Or any other good resources that I could look into. Thanks.
  11. tayorolls

    How to get the 2nd last folder in a folder path?

    Hi, I am trying to accomplish this in JScript and ASP. I can get the last folder in the path, but not the 2nd last one. For instance in the example below, I can "Sales Agreement", but I am not able to get "Standard Form Agreements and Templates". How can I get that? Thanks. My browser output...
  12. tayorolls

    AJAX with HTML Submit buttons

    Hi, I have always used AJAX with onChange events of Select Controls, or creating dependent Drop Down Boxes. Now I am faced with another scenario. Users want a search form. Once they select a value in the Select box, they will enter the search values and then click on the submit button to get...
  13. tayorolls

    XML Parsing error - JScript and ASP

    Hi, The intranet shows news by taking a feed from a URL. In case the URL is down, I would like to display a message indicating that the URL is down instead of crashing the intranet. This is in JScript & ASP. /********************************************* CORE XMLHTTPREQUEST OBJECT...
  14. tayorolls

    xmlHTTP Error

    Hi, I am getting an error while taking feeds for our organization. Apparently that URL was down for a while. <!-- ****************** Begin News Modules ****************** --> <style> body {font-family: Verdana, Arial, Helvetica, sans-serif;} div.news-header-employee...
  15. tayorolls

    Access to a Access database

    Hi, I can access a network folder where there is an Access database. When I click on the database, I can see the table view where a large number of tables are linked tables. How can I trace it back to the table/database to which it is linked to? Secondly, when I click on one of the linked...
  16. tayorolls

    Question about Stored Procedure - Split, Insert Questions

    This question about the stored procedure is 2 part: Following is the DDL for the test data which I am working on. CREATE TABLE Test ( LawsonID varchar(20) primary key, FirstName varchar(100), LastName varchar(100), Supervisor varchar(100) ) INSERT INTO Test(LawsonID, FirstName, LastName...

Part and Inventory Search

Back
Top