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: *

  • Users: AKS44
  • Order by date
  1. AKS44

    Search - Open New Window

    Thanks Lee... Your post actually got me to the solution. var strURL = window.open ('http://polariscatalog.piercecountylibrary.org/polaris/search/searchresults.aspx?ctx=1.1033.0.0.6' + "&type=Keyword&limit=TOM=*&sort=RELEVENCE&Page=0&by=" + strBy + "&term=" +...
  2. AKS44

    Search - Open New Window

    Thanks Lee, I am aware that the error is coming from those lines. I changed window.open to window.location for those lines and it still does not work properly. Could you provide some direction as to why versus pointing out the erroneous lines without a solution?
  3. AKS44

    Search - Open New Window

    Ooops... I jumped the gun.. This still doesn't work as it should. It now opens a new window the first time, but returns a script error on second run. It also doesn't pass the string information on to the next page.
  4. AKS44

    Search - Open New Window

    Ok I got it... Thanks in advance to those how view this post. Here is the final source. ///////////////////////////////// { return this.replace(/^\s*|\s*$/g,''); } function ProcessInput(e) { if (window.event) // IE keyNum = e.keyCode;else if (e.which) // Netscape/Firefox/Opera keyNum =...
  5. AKS44

    Search - Open New Window

    Ok... I figured out the window.open but now, when the new page opens the page behind (original search page) redirects to a 404 and in the address bar it has http://domain.com/[object]&type=Browse&Page=0&by=TI&term=search I added window.open to the following line of code from my previous post...
  6. AKS44

    Search - Open New Window

    Ok... I figured out the window.open but now, when the new page opens the page behind (original search page) redirects to a 404 and in the address bar it has http://domain.com/[object]&type=Browse&Page=0&by=TI&term=search Again any help is greatly appriceated.
  7. AKS44

    Search - Open New Window

    Hello, I'm trying to get the following script to open in a new window when a user clicks on one of the buttons. Here it is, any help is greatly appriceated. *********** String.prototype.trim = function() { return this.replace(/^\s*|\s*$/g,''); } function ProcessInput(e) { if...
  8. AKS44

    hide div content after Time delay of x

    I am attempting to create a show/hide div that simply hides the content in the div after it's displayed for 30 seconds or soo. This needs to be cross platform (IE6-7, FireFox, NS, etc) A good example can be seen at http://www.golf.com/golf/. The Ad at the top will slide close after a period of...
  9. AKS44

    JS Dropdown menu to hold down state

    Sorry.... Try this address http://sms-cs.no-ip.org/si/ The supporting js file is simply the configuration with arrays to build the menu... Let me know what i can provide to help with the resolution.
  10. AKS44

    JS Dropdown menu to hold down state

    I am working on a dropdown menu, and I need it to hold the down state of the top level menu item while you move over it's sub, and to come back to the up state once you move off. You can view an example of this menu in its current version - www.sms-cs.no-ip.org/si , if you move over products...
  11. AKS44

    CDO form new field

    I am working on a workorder request form that uses cdonts (Win 2000 server) I am simply trying to add more fields to the form and have the results sent via the email. This form also allows for multiple file attachments. You will notice the field "Requestor" that is a field that i added, however...
  12. AKS44

    multiple actions in one form

    we here is what i have come up with thus far. Maybe this will clear up some question. <!-- create the form --> <form name=Form1 method=post> <!-- Add the data entry bits --> Your Name <INPUT type="text" name=text1> <input type=image name=sa value="Search" src="/images/btn_go.gif" width="25"...
  13. AKS44

    multiple actions in one form

    I am trying to incorporate two search forms into one form. I am assuming that it will require some java scripting to accomplish this. However, i am not sure how to do this; any and all help would be greatly appreciated. Incorporate form 2 with form 1 Form 1 - <FORM method=GET...
  14. AKS44

    Multiple radio buttons in a single form

    I am trying to incorporate two search forms into one form. I am assuming that it will require some java scripting to accomplish this. However, i am not sure how to do this; any and all help would be greatly appreciated. Incorporate form 2 with form 1 Form 1 - <FORM method=GET...
  15. AKS44

    INSERT INTO query

    my revised code resulted in a almost insentanious reponse. 'Insert Statement strSQL = "INSERT INTO " & strDBTable & "Members ([Name],[Email],[Password],[Salt],[ID_Code],[HTMLformat],[Active]) VALUES " & _ "('" & strUserName & "','" & strEmail & "','" & strPassword & "','" &...
  16. AKS44

    INSERT INTO query

    vongrunt, That is correct the ID_Code needs to be unique. It is used in the email for varification, it addes the verification code hexValue(20) to the url and sets Active=1. The email address also needs to be unique, no duplicates for either field.
  17. AKS44

    INSERT INTO query

    vongrunt, your right, that's not the only issue. Below is the original code. All I am wanting to do is improve the performance of this code. This page is the registration page for new user accounts, the existing db has 35,000+ records in it already. When a new user signs up it takes about 50...
  18. AKS44

    INSERT INTO query

    I am doing an inital query strSQL = "SELECT " & strDbTable & "Members.* FROM " & strDbTable & "Members WHERE(Email = '"&strEmail&"');" rsCommon.Open strSQL, adoCon Do While NOT rsCommon.EOF blnEmailExists = true rsCommon.MoveNext Loop rsCommon.Close If the email doesn't...
  19. AKS44

    INSERT INTO query

    It is set up to Loop through all the records in the recordset to check that the user id and the email address are not already in the database If there is no user code or it is already in the database make a new one and serch the recordset from the begining again If the e-mail address is already...
  20. AKS44

    INSERT INTO query

    I am working on a user registration page. It was initally designed with a Do While Loop and I have been encountering latency issues because it is looping through 35,000+ records in SQL before entering a new record. I am attempting to change it to an INSERT INTO query. The DB has a Name, Email...

Part and Inventory Search

Back
Top