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 IamaSherpa 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. villan

    Vbscript for SSL email?

    I would like to set up a secure e-mail page on a client site, currently the pages are SSL protected but the e-mail sent from within the site is not. The e-mail contains sensitive data & is currently sent using the usual VBScript of: Set Mailer = Server.CreateObject("SMTPsvg.Mailer")...
  2. villan

    Passing values in frames

    Thanks mate, I've tried all sorts of variations, but none work. The best advised answer I've recieved is to use the following: x = parent.bottom.form1.text1.value response.write x However this does not work.I have to have it in VBScript, as the variables are needed server-side & i don't know...
  3. villan

    Passing values in frames

    As a rule I have always avoided frames at all costs, thus my complete lack of knowledge on the subject: I have page with two frames, one called "top" & one called "bottom". "Top" has a textbox with a value in it. I would like to display the value of the textbox...
  4. villan

    Onclick & Update query

    How do you have an image with an "onclick" event that runs an update query without reloading the page?? Can updates only be done server-side? Do "onclick" events only occur client side?
  5. villan

    how do you tell when a form element has focus?????

    I am designing an intranet site for one of my customers & i want to write some code that acts as follows: when the user presses the "up" arrow, the focus moves to the button above & vice versa on "down" arrow. I decided that if i could identify which button had focus at the...
  6. villan

    how do you tell when a form element has focus?????

    I have an ASP with a form containing 10 buttons, in a "keypress" function i need to know which button currently has focus, I've tried the following - but they don't work: if (document.form1.button1.focus() == true) and if (document.form1.button1.focus()) how do i confirm which item...

Part and Inventory Search

Back
Top