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

    1 form ... 2 databases

    Thank you! Yes, I'm not doing anything illegal :) It's just a weird scenario that I have. I'll try this later tonight and let ya know if I have any questions. Thanks!!!
  2. orlandoj

    1 form ... 2 databases

    No problem! Thanks for your help. :) Lets say there is server1.com and server2.com I administer and have full control over server1.com I have ZERO control on server2.com ... they are a business partner. There is a simple HTML form on server1.com, which CURRENTLY sends its form data to...
  3. orlandoj

    1 form ... 2 databases

    Sorry I don't think I was specific enough in the initial question. ONE of the databases is on our company's server, which I admin. THE OTHER server, I don't have access to. I don't even know the path of the database. ..and I can't ask to find out. Right now I just have the HTML form linked...
  4. orlandoj

    1 form ... 2 databases

    Hello, I think I have a rather basic question, but can't figure out how to do this. I have one simple HTML form with a couple fields and a submit button. I need the form data to be submitted to 2 different databases on seperate servers. I am using ASP and MS Access databases on both servers...
  5. orlandoj

    Simple question about opening files

    How can I open a file in Windows using VBScript? Say I wanted to open a .jpeg file in whatever the program is that is associated in Windows. How can I do this?
  6. orlandoj

    Frame troubles

    D'oh! After 2 hours of banging my head against my desk trying to figure this out, and 2 minutes after posting, I figured out what went wrong. Apparently 'getCookie' is a function that this guy made and isn't a preset js function. After I pasted in his code for the 'getCookie' and...
  7. orlandoj

    Frame troubles

    I've copy and pasted this code exactly as is, and CAN'T seem to get it to work. I am seeming to get tripped up on this line: var newURL = getCookie('newURL'); Internet Explorer is saying Error: Object Expected Yes, I do have cookies enabled in my browser. I really don't understand what this...
  8. orlandoj

    HTML and MSACCES problem!!!!

    Dan, try replacing the spaces in the URL with %20. This works on the web. I'm not sure if it'll work on local documents too.
  9. orlandoj

    Frame troubles

    Awesome, Kevin! That's a big help. For anybody else interesting here is ACTUAL URL: http://www.digitalroom.net/javascript/frame.html
  10. orlandoj

    Frame troubles

    I have a website which uses 2 frames. One frame is a thin menu along the top of the screen and underneath is the other frame which is the body of the page. The annoying thing is that if someone types in the URL of the just the bottom frame ...ie: news.html, the menu frame won't appear. I...
  11. orlandoj

    Checking the database before submitting a form

    Thanks! This should be sufficient for me to do what I needed to do. -Jamie
  12. orlandoj

    Checking the database before submitting a form

    Thanks, I had already considered both of those methods before posting. I was just looking for something more simple. (I realize this may not be possible.) Is there some way in my javascript function, that I can call an ASP scriptlet to check if the e-mail address is in the database? This is...
  13. orlandoj

    Checking the database before submitting a form

    Hi all, I have a form where the user can submit their e-mail address. Before the form submits, I'd like to check if the e-mail address already exists in my database, and if it does, open a javascript alert window which says "e-mail already exists". I've been having alot of problems...
  14. orlandoj

    Selecting 'middle' records

    What is the code to jump to a specific record in a recordset? Thanks, -Jamie <<I would open a recordset to the orignal table, jump to record 100.....>>
  15. orlandoj

    Selecting 'middle' records

    Hmmmm .... seems rather inefficient in design. That query has to check every row to see if it is NOT in the top 100 rows, and then get the top 100 rows from that result set. Is there a more efficient way to just return records 100-200? Thanks, -Jamie
  16. orlandoj

    Selecting 'middle' records

    Hi, I know how to make a query to select the top 100 rows of a table: SELECT TOP 100 * FROM ... ORDER BY ...; How would I make a query that selected rows 100-200. A pseudocode example would be: SELECT MIDDLE 100-200 FROM ... ORDER BY ...; Is there a way to do this? Thanks, -Jamie
  17. orlandoj

    Redirecting a servlet to a jsp with parameters

    That's a shame. Oh well...thanks so much for your help!
  18. orlandoj

    Redirecting a servlet to a jsp with parameters

    I've actually looked into both methods, but I decided on the sendRedirect method, because I'm forwarding to a page outside my web-container. Is there any way to send parameters without sending them in the URL? Thanks, -Jamie
  19. orlandoj

    Redirecting a servlet to a jsp with parameters

    Hey all, I was wondering how I can send parameters from a servlet to a jsp. I have this line in the body of my doPost method in my servlet: response.sendRedirect(&quot;/index.jsp&quot;); and, was wondering how I could send a parameter 'url' with the value 'test', without merely just doing...
  20. orlandoj

    Password protection

    Hi, I'm relatively new to ASP, so please bear with me! :) I was wondering how I go about password protecting some admin pages on my site. For example, when they try to load the page, it pops up &quot;please enter the password...&quot; and then you are either granted or denied access...

Part and Inventory Search

Back
Top