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

    Validating a hidden field

    I have a form that is broken out into 4 pages. Dependant on whether you select "Exempt" or "Non-Exempt" on page 3 you will have different choices on page 4. How can I modify my script so that it only validates the fields that are being displayed. In this case let's say that only the "Current...
  2. 3112005

    Receiving blank emails from submit form

    I keep receiving blank emails from my online submit form on my website. I thought it was people using it without javascript enabled, so I redirected them to a different page so they could not, but I am still receiving them. Does anyone know why? Thanks! </> [link to form]...
  3. 3112005

    Receiving blank form results

    I created an online submit form for one of my websites. The person that receives the results is complaining that they keep getting emails from the form with nothing filled in. Is there something causing this other than a user just hitting submit without filling in their info? Thanks.
  4. 3112005

    Insert or Update statement for a query needed

    Is there a way to make this work for a query... INSERT INTO table_name (column1,column2,column3) values(xxx,xxx,xxx) WHERE field = 'x' I already have a string of column names and corresponding values and I need them inserted into an existing record. I know this is normally an UPDATE...
  5. 3112005

    Single Sign on

    I need to find a way to automatically log a user into our internal web site when logged into the self service portal. Below are the instructions on how to do this, but the code on my internal pages is very complex so I'm not sure what fields to pull and how to pass them. My Internal site code...
  6. 3112005

    Adding a Cc field to a form

    I already have a working form that sends and email based on drop down selection. Now I need to add a field that the user types an email in and it Cc's the form to that manually typed email. I found a site that seemed to explain it http://www.brainjar.com/asp/formmail/default.asp, but I can't...
  7. 3112005

    Recipien drop down list

    I searched this forum and didn't find this topic covered, so I hope I'm not duplicated a thread. I need to make my form submit to an email based on who they selection in a drop down. I've got the dropdown list made in the form using.... <select name="recipient" size="1"> <option...
  8. 3112005

    Recipient drop down list

    I searched this forum and didn't find this topic covered, so I hope I'm not duplicated a thread. I need to make my form submit to an email based on who they selection in a drop down. I've got the dropdown list made in the form using.... <select name="recipient" size="1"> <option...
  9. 3112005

    Problems with email submit form

    I used this same form for another page on my website and it works fine. Can anyone see why this new form is giving me a "Page Cannot Be Displayed" error when I hit submit? <Form.htm> <html> <head> <script type="text/javascript"> function validate_required(field,alerttxt) { with (field)...
  10. 3112005

    How to create controlled fields

    How can I make the Product Line field display certain results based on what is selcted in the Request field? I'm hoping this can be done with some VBscript or Java without referencing the database which I don't have access to. <tr> <td width="144"><font face="Arial" size="2">...
  11. 3112005

    create email link without using the mailto option

    I have an email address that displays from a database based on criteria. If user Id = this and location = this then display email I've got the code working so that it displays the right email, but I can't get it to hyperlink and open an new email message when clicked on. I tried using the...
  12. 3112005

    IP recognition redirect page

    How can you create a link on your web page that looks at your IP address and determines if you in our outside of the network and then determines which page to redirect you to depending on your IP?
  13. 3112005

    Drop-down validation

    I've tried to get my drop-down menu to validate every which way, but no luck. Can someone take a look at my code and see what I need to do? <CodeStart> <html> <head> <script type="text/javascript"> function validate_required(field,alerttxt) { with (field) { if (value==null||value=="")...
  14. 3112005

    Complicated INSERT Statment

    I have a table called USERS that has a column called Division. The values are actually the Division_id from another table called DIVISIONS. I need to create a column in the USERS table that lists the Division_name, which can also be found in the DIVISION table. Each Division_name has a...
  15. 3112005

    Subject field auto populated

    I have job postings that pull from a db on my website and when you click the email link for a particular job it populates the subject field with it's job code. For some reason some people are getting some jargen in the subject field like this... Subject: Job Code: 992 When it should look...
  16. 3112005

    Footer menu not displaying correctly

    I must be calling my tags in the wrong order because if I call my table tag (that displays my database info) in the right spot, then the bottom footer menu does not display correctly. This is the file called out at the bottom of the page in an include file. If I move my table to display above...

Part and Inventory Search

Back
Top